mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-28 01:00:02 +02:00
24 lines
318 B
Makefile
24 lines
318 B
Makefile
|
|
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"
|
|
|
|
|