new separate receiver

This commit is contained in:
Maliakal Dhanya
2014-05-21 09:59:37 +02:00
commit 8c72246ce7
59 changed files with 11792 additions and 0 deletions

View 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"