root := ../..
subdirs := 
pre-targets := 
targets := swmgrex
bin := swmgrex
include ${root}/Makefile.cfg

cpp += swmgrex.cpp


s = $(c) $(cpp)
d = $(c:%.c=%.d) $(cpp:%.cpp=%.d)
o = $(c:%.c=%.o) $(cpp:%.cpp=%.o)
l = -lswmgr -lkeys -lutilfuns -lmodules -lstdc++ -lfrontend 


swmgrex: $(o)
	$(CC) $(LFLAGS) -o $@ $(o) $(l) $(l)


ifneq ($(nodeps),yes)
-include $(d)
endif
