From dd9359c7093ffef054fca8415430eaf4526430fa Mon Sep 17 00:00:00 2001 From: steffen Date: Sun, 18 Oct 2020 19:47:39 +0000 Subject: [PATCH] added better windows support --- Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 28ef754..b37e35b 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ noconfig: help endif -all: dep $(TARGET) test-udp test-tcp test-ssl +all: dep $(TARGET) test-udp test-tcpserver test-tcpclient test-ssl help: echo "set up configuration" @@ -29,8 +29,11 @@ configlinux: clean configwindows: clean cp -f Makefile.rules.windows Makefile.rules -test-tcp: $(TARGET) test-tcp.o - $(CXX) test-tcp.o -o $@ -lUDPTCPNetwork -L./ -I./ $(LDFLAGS) +test-tcpserver: $(TARGET) test-tcpserver.o + $(CXX) test-tcpserver.o -o $@ -lUDPTCPNetwork -L./ -I./ $(LDFLAGS) + +test-tcpclient: $(TARGET) test-tcpclient.o + $(CXX) test-tcpclient.o -o $@ -lUDPTCPNetwork -L./ -I./ $(LDFLAGS) test-ssl: $(TARGET) test-ssl.o $(CXX) test-ssl.o -o $@ -lUDPTCPNetwork -L./ -I./ $(LDFLAGS)