diff options
author | Uros Majstorovic <majstor@majstor.org> | 2018-01-20 19:15:13 +0100 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2018-01-20 19:15:13 +0100 |
commit | 30b62efc8f044a7fd00e21c56490aefa32686a52 (patch) | |
tree | d6574ec84c9213c5739dae91953f0bac81593c9e /code/test/Makefile | |
parent | 3e50c4990f4703e2c04d0f959d33e36504d43716 (diff) |
added client timing test
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 5eeb6b7..ae400ee 100644 --- a/code/test/Makefile +++ b/code/test/Makefile @@ -7,7 +7,7 @@ dep=../ecp/build-posix/*.a ../util/libecputil.a %.o: %.c $(CC) $(CFLAGS) -c $< -all: basic client server echo frag stress vcs vc_server vc_client +all: basic client server echo frag stress vcs vc_server vc_client vc_client_t basic: basic.o init.o $(dep) $(CC) -o $@ $< init.o $(dep) $(LDFLAGS) @@ -36,6 +36,9 @@ vc_server: vc_server.o init_vconn.o $(dep) vc_client: vc_client.o init_vconn.o $(dep) $(CC) -o $@ $< init_vconn.o $(dep) $(LDFLAGS) +vc_client_t: vc_client_t.o init_vconn.o $(dep) + $(CC) -o $@ $< init_vconn.o $(dep) $(LDFLAGS) + opus_root=/opt/my/opus-1.1.5 voip.o: voip.c @@ -46,4 +49,4 @@ voip: voip.o init.o $(dep) clean: rm -f *.o - rm -f basic client server echo frag stress vcs vc_server vc_client voip + rm -f basic client server echo frag stress vcs vc_server vc_client vc_client_t voip |