]> git.llucax.com Git - software/ev.d.git/commitdiff
Add Makefile.
authorLeandro Lucarella <llucax@gmail.com>
Sun, 27 Jan 2008 03:28:05 +0000 (01:28 -0200)
committerLeandro Lucarella <llucax@gmail.com>
Sun, 27 Jan 2008 03:28:05 +0000 (01:28 -0200)
Makefile [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..0f91853
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,17 @@
+
+all: test
+
+test.o: test.d ev.d
+       gdc -c -Wall -ggdb test.d
+
+ev.o: ev.d
+       gdc -c -Wall -ggdb ev.d
+
+test: test.o ev.o
+       gdc -o test -lev test.o ev.o
+
+clean:
+       $(RM) -v *.o test
+
+.PHONY: clean all
+