mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-23 01:58:00 +02:00
SlsDetector client library and servers. First import.
git-svn-id: file:///afs/psi.ch/project/sls_det_software/svn/slsDetectorSoftware@1 951219d9-93cf-4727-9268-0efd64621fa3
This commit is contained in:
23
slsDetectorSoftware/MySocketTCP/Makefile
Normal file
23
slsDetectorSoftware/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