summaryrefslogtreecommitdiff
path: root/src/Sockets/tests/Makefile
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2008-10-19 20:06:14 +0000
committerOthmar Gsenger <otti@anytun.org>2008-10-19 20:06:14 +0000
commit7ec2d1c53b753238509bf7a89587509305b9216d (patch)
tree2e81d3fbd6b2a515f71449a2a16b2c69ecf4ddad /src/Sockets/tests/Makefile
parentswitched from PracticalSocket to libasio (diff)
move to asio socket libary for sync
bugs / todos: * new connections don't sync * anyrtpproxy broken * anytun-controlld doesn't send data
Diffstat (limited to 'src/Sockets/tests/Makefile')
-rw-r--r--src/Sockets/tests/Makefile73
1 files changed, 0 insertions, 73 deletions
diff --git a/src/Sockets/tests/Makefile b/src/Sockets/tests/Makefile
deleted file mode 100644
index 0bbabf8..0000000
--- a/src/Sockets/tests/Makefile
+++ /dev/null
@@ -1,73 +0,0 @@
-SOCKETS = ..
-PLATFORM = linux-x86-32
-LIBS = -L$(SOCKETS) -lSockets
-
-INCLUDE = -I$(SOCKETS)
-include $(SOCKETS)/Makefile.version
-include $(SOCKETS)/Makefile.Defines.$(PLATFORM)
-
-CPPFLAGS = $(CFLAGS)
-
-#LIBS += -lsctp
-
-PROGS = events resolve sockets_test base64 semtest \
- echoserver stressclient http httpd retry resume \
- http_post x copy crlf https sloppy_http
-
-all: $(PROGS)
-
-events: events.o
- $(CXX) -o $@ $^ $(LIBS)
-
-resolve: resolve.o
- $(CXX) -o $@ $^ $(LIBS)
-
-sockets_test: sockets_test.o
- $(CXX) -o $@ $^ $(LIBS)
-
-base64: base64.o
- $(CXX) -o $@ $^ $(LIBS)
-
-semtest: semtest.o
- $(CXX) -o $@ $^ $(LIBS)
-
-echoserver: echoserver.o
- $(CXX) -o $@ $^ $(LIBS)
-
-stressclient: stressclient.o
- $(CXX) -o $@ $^ $(LIBS)
-
-http: http.o
- $(CXX) -o $@ $^ $(LIBS)
-
-httpd: httpd.o
- $(CXX) -o $@ $^ $(LIBS)
-
-retry: retry.o
- $(CXX) -o $@ $^ $(LIBS)
-
-resume: resume.o
- $(CXX) -o $@ $^ $(LIBS)
-
-http_post: http_post.o
- $(CXX) -o $@ $^ $(LIBS)
-
-x: x.o
- $(CXX) -o $@ $^ $(LIBS)
-
-copy: copy.o
- $(CXX) -o $@ $^ $(LIBS)
-
-crlf: crlf.o
- $(CXX) -o $@ $^ $(LIBS)
-
-https: https.o
- $(CXX) -o $@ $^ $(LIBS)
-
-sloppy_http: sloppy_http.o
- $(CXX) -o $@ $^ $(LIBS)
-
-clean:
- rm -f *.o *~ slask *.d $(PROGS)
-
--include *.d