mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-23 23:10:02 +02:00

git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorSoftware@1 951219d9-93cf-4727-9268-0efd64621fa3
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"
|
|
|
|
|