From 4999f6c736e3cddb3163a6a706aabcaad83cc4f9 Mon Sep 17 00:00:00 2001
From: hackbard <hackbard>
Date: Mon, 15 Sep 2003 19:34:39 +0000
Subject: [PATCH] test makefile added

---
 Makefile_2 | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)
 create mode 100644 Makefile_2

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
+
-- 
2.39.5