diff options
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 |