[IOMultiplexer] moved test program into own sub-directory
[IOMultiplexer.git] / src / Makefile
diff --git a/src/Makefile b/src/Makefile
deleted file mode 100644 (file)
index 434a929..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-
-CC      = gcc
-CFLAGS  = -g -O0 -Wall -Wshadow -Werror
-LDFLAGS = -lws2_32
-
-OBJ     = IOEngine_epoll.o IOEngine_kevent.o IOEngine_select.o IOEngine_win32.o IOHandler.o IOHandler_SSL.o main.o
-
-all: $(OBJ)
-       $(CC) $(CFLAGS) -oiotest $(OBJ) $(LDFLAGS)
-
-%.o: %.c
-       $(CC) $(CFLAGS) -c $<