diff options
author | Uros Majstorovic <majstor@majstor.org> | 2017-09-09 12:43:40 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2017-09-09 12:43:40 +0200 |
commit | 4e0c427c546a6d664642f68cc6d11f879c537d29 (patch) | |
tree | ac436ce8da05c52ee1e0e1b1a7bad1f4008c8afe /code/test/Makefile | |
parent | 8d3e76d078cf1fd9d295391735ca4208eaa5f3de (diff) |
fragments test added
Diffstat (limited to 'code/test/Makefile')
-rw-r--r-- | code/test/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
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 |