random values
[physik/morpheus.git] / Makefile
diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..4f1c9c9
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,16 @@
+# Makefile of ivac
+
+INCLUDEDIR = /usr/include
+
+CFLAGS = -DDEBUG -O3 -Wall -I/usr/include/directfb
+LIBS = -L/usr/lib/directfb-0.9.15 -ldirectfb
+
+OBJS = random.o
+OBJS2 = morpheus
+
+morpheus: $(OBJS)
+       $(CC) -o $@ $(OBJS) $(LIBS) main.c
+all: morpheus
+
+clean:
+       rm $(OBJS) $(OBJS2)