changes in makefile to make a separate receiver

This commit is contained in:
Maliakal Dhanya
2014-05-20 17:17:20 +02:00
parent 9c5e2aa5b7
commit ea1878f848
3 changed files with 16 additions and 15 deletions

View File

@ -3,8 +3,9 @@ CLAGS += -DVERBOSE #VERYBOSE
LDLIBS += -lm -lstdc++ -lpthread
LDIR = ../../slsDetectorSoftware
INCLUDES = -I ../../slsDetectorSoftware/commonFiles -I ../../slsDetectorSoftware/MySocketTCP -I ../../slsDetectorSoftware/slsDetector -I ../include
SRC_CLNT = qClient.cpp ../../slsDetectorSoftware/MySocketTCP/MySocketTCP.cpp
RDIR = ../../slsReceiverSoftware
INCLUDES = -I $(LDIR)/commonFiles -I $(RDIR)/MySocketTCP -I $(LDIR)/slsDetector -I ../include -I $(RDIR)/includes
SRC_CLNT = qClient.cpp $(RDIR)/MySocketTCP/MySocketTCP.cpp
PROGS = gui_client
DESTDIR ?= bin
@ -26,8 +27,7 @@ $(PROGS):
mv $(PROGS) $(FINALDIR)
clean:
rm -rf $(DESTDIR)/$(PROGS) *.o
rm -rf $(FINALDIR)/$(PROGS)
rm -rf $(DESTDIR)/$(PROGS) *.o $(FINALDIR)/$(PROGS)