summaryrefslogtreecommitdiff
path: root/test/etp_test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/etp_test/Makefile')
-rw-r--r--test/etp_test/Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/etp_test/Makefile b/test/etp_test/Makefile
deleted file mode 100644
index 50b4c84..0000000
--- a/test/etp_test/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-CC = gcc
-CFLAGS = -g -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes \
- -I ../../libetp -I ../../libtnttk/include
-LDFLAGS = -L ../../libetp -L ../../libtnttk
-LIBS = -letp -ltnttk
-
-.PHONY: all clean
-
-all: etp_test etp_svr
-
-etp_test: etp_test.o
- $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
-
-etp_svr: etp_svr.o
- $(CC) $(LDFLAGS) -o $@ $^ $(LIBS)
-
-%.o: %.c
- $(CC) $(CFLAGS) -c -o $@ $<
-
-clean:
- rm -f etp_test etp_svr *.o