From 4e0c427c546a6d664642f68cc6d11f879c537d29 Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Sat, 9 Sep 2017 12:43:40 +0200 Subject: fragments test added --- code/test/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'code/test/Makefile') diff --git a/code/test/Makefile b/code/test/Makefile index 997f77e..ec9730f 100644 --- a/code/test/Makefile +++ b/code/test/Makefile @@ -6,7 +6,7 @@ dep=../core/libecpcore.a ../core/crypto/libecpcr.a ../core/htable/libecpht.a ../ %.o: %.c $(CC) $(CFLAGS) -c $< -all: basic client server echo stress vcs vc_server vc_client +all: basic client server echo frag stress vcs vc_server vc_client basic: basic.o init.o $(dep) $(CC) -o $@ $< init.o $(dep) $(LDFLAGS) @@ -20,6 +20,9 @@ server: server.o init.o $(dep) echo: echo.o init.o $(dep) $(CC) -o $@ $< init.o $(dep) $(LDFLAGS) +frag: frag.o init.o $(dep) + $(CC) -o $@ $< init.o $(dep) $(LDFLAGS) + stress: stress.o init.o $(dep) $(CC) -o $@ $< init.o $(dep) $(LDFLAGS) @@ -42,4 +45,4 @@ voip: voip.o init.o $(dep) clean: rm -f *.o - rm -f basic client server echo stress vcs vc_server vc_client voip + rm -f basic client server echo frag stress vcs vc_server vc_client voip -- cgit v1.2.3