From: hackbard Date: Mon, 15 Sep 2003 19:34:39 +0000 (+0000) Subject: test makefile added X-Git-Url: https://hackdaworld.org/gitweb/?p=my-code%2Fivac.git;a=commitdiff_plain;h=4999f6c736e3cddb3163a6a706aabcaad83cc4f9 test makefile added --- diff --git a/Makefile_2 b/Makefile_2 new file mode 100644 index 0000000..e00db75 --- /dev/null +++ b/Makefile_2 @@ -0,0 +1,17 @@ +INCLUDEDIR = /usr/include +CFLAGS = -O3 -Wall -I/usr/include/directfb +LIBS = -L/usr/lib -ldirectfb + +OBJS = v4lapi.o +OBJS2 = test + +test: $(OBJS) + $(CC) $(CFLAGS) -o $@ $(OBJS) $(LIBS) test.c + +all: test + +clean: + rm $(OBJS) $(OBJS2) + +remake: clean all +