cleanup (-> old directory) & creation of 'new' src folder + TODO
[my-code/ivac.git] / Makefile_2
diff --git a/Makefile_2 b/Makefile_2
deleted file mode 100644 (file)
index e00db75..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-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
-