mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-22 01:27:59 +02:00
new separate receiver
This commit is contained in:
23
slsReceiverSoftware/MySocketTCP/Makefile
Normal file
23
slsReceiverSoftware/MySocketTCP/Makefile
Normal file
@ -0,0 +1,23 @@
|
||||
|
||||
TOBECLEANED = MySocketTCP.o
|
||||
|
||||
PROGRAMS = rec send
|
||||
|
||||
all: $(PROGRAMS)
|
||||
|
||||
clean:
|
||||
@rm -f $(TOBECLEANED) $(PROGRAMS)
|
||||
|
||||
rec: MySocketTCP.o rec.cxx
|
||||
g++ -o $@ $^
|
||||
@echo "$@ done"
|
||||
|
||||
send: MySocketTCP.o send.cxx
|
||||
g++ -o $@ $^
|
||||
@echo "$@ done"
|
||||
|
||||
MySocketTCP.o: MySocketTCP.cxx MySocketTCP.h
|
||||
g++ -c $<
|
||||
@echo "$@ done"
|
||||
|
||||
|
Reference in New Issue
Block a user