X-Git-Url: https://hackdaworld.org/gitweb/?a=blobdiff_plain;f=old%2FMakefile_2;fp=old%2FMakefile_2;h=e00db75a6f8543af04bcb90bee8613c5d63efa0a;hb=0e2dd277897f8959e363564b91dd7d098fb4873c;hp=0000000000000000000000000000000000000000;hpb=6b894156a6cd304f35a959d4388dfb1e1342e844;p=my-code%2Fivac.git diff --git a/old/Makefile_2 b/old/Makefile_2 new file mode 100644 index 0000000..e00db75 --- /dev/null +++ b/old/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 +