From d40fd9b1adab64182ce8af0b8e19cfc8a93171d7 Mon Sep 17 00:00:00 2001 From: Uros Majstorovic Date: Sat, 9 Sep 2017 15:36:21 +0200 Subject: video streaming test updated; not tested --- code/test/vid/Makefile | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'code/test/vid/Makefile') diff --git a/code/test/vid/Makefile b/code/test/vid/Makefile index 757429d..fbdbe15 100644 --- a/code/test/vid/Makefile +++ b/code/test/vid/Makefile @@ -1,17 +1,20 @@ LIBVPX_HOME=../libvpx -CFLAGS=-D_V4L2_KERNEL_ -I/usr/src/linux-headers-$(uname -r) -I$(LIBVPX_HOME) +CFLAGS=-D_V4L2_KERNEL_ -I/usr/src/linux-headers-$(uname -r) -I$(LIBVPX_HOME) -I../../core -I../../vconn -I../../util LDFLAGS=-L$(LIBVPX_HOME) -deps=$(LIBVPX_HOME)/ivfenc.c.o $(LIBVPX_HOME)/video_writer.c.o +dep=../../core/libecpcore.a ../../core/crypto/libecpcr.a ../../core/htable/libecpht.a ../../core/posix/libecptr.a ../../core/posix/libecptm.a ../../vconn/libecpvconn.a ../../util/libecputil.a ../init.o -all: cap +all: client cap %.o: %.c $(CC) $(CFLAGS) -c $< -cap: cap.o enc.o tools.o - $(CC) -o $@ $< enc.o tools.o $(deps) -lvpx -lm -pthread $(LDFLAGS) +cap: cap.o enc.o tools.o server.o + $(CC) -o $@ $< enc.o tools.o server.o -lvpx -lm -pthread $(dep) $(LDFLAGS) +client: client.o tools.o + $(CC) -o $@ $< tools.o -lvpx -lm -pthread $(dep) $(LDFLAGS) + clean: rm -f *.o - rm -f cap + rm -f cap client -- cgit v1.2.3