From 9cd3ccffd5372dfde3af478e3f832f18db4be3f1 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 6 Apr 2013 13:14:41 +0200 Subject: tagging tags --- yhttpd-0.7.0/src/sock/Makefile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 yhttpd-0.7.0/src/sock/Makefile (limited to 'yhttpd-0.7.0/src/sock/Makefile') diff --git a/yhttpd-0.7.0/src/sock/Makefile b/yhttpd-0.7.0/src/sock/Makefile new file mode 100644 index 0000000..f5895f1 --- /dev/null +++ b/yhttpd-0.7.0/src/sock/Makefile @@ -0,0 +1,23 @@ +#CC=gcc33 +CC=g++ +INCLUDE= +DEBUG=-D_GNU_SOURCE +#CFLAGS=-Wall -O3 -s $(DEBUG) $(INCLUDE) +#CFLAGS=-Wall -g -ansi -pedantic $(DEBUG) $(INCLUDE) +CFLAGS=-Wall -g $(DEBUG) $(INCLUDE) +LIBS=-lstdc++ + +OBJECTS=main-test.o tcp-client.o exception.o +PROGRAM=main-test + +all: $(PROGRAM) + +$(PROGRAM): $(OBJECTS) + $(CC) $(CFLAGS) -o $@ $(OBJECTS) $(LIBS) + +.cpp.o: + $(CC) $(CFLAGS) -c -o $@ $< + +clean: + rm -f $(PROGRAM) $(OBJECTS) + -- cgit v1.2.3