buflen = 1024 bytes + added total and kb/s output for stream
[my-code/ivac.git] / Makefile_2
1 INCLUDEDIR = /usr/include
2 CFLAGS = -O3 -Wall -I/usr/include/directfb
3 LIBS = -L/usr/lib -ldirectfb
4
5 OBJS = v4lapi.o
6 OBJS2 = test
7
8 test: $(OBJS)
9         $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBS) test.c
10
11 all: test
12
13 clean:
14         rm $(OBJS) $(OBJS2)
15
16 remake: clean all
17