forgot to add makefile
authorMatthias Braun <matze@braunis.de>
Mon, 22 Nov 2004 01:53:13 +0000 (01:53 +0000)
committerMatthias Braun <matze@braunis.de>
Mon, 22 Nov 2004 01:53:13 +0000 (01:53 +0000)
SVN-Revision: 2129

contrib/tilemanager/Makefile [new file with mode: 0644]

diff --git a/contrib/tilemanager/Makefile b/contrib/tilemanager/Makefile
new file mode 100644 (file)
index 0000000..90c8c9b
--- /dev/null
@@ -0,0 +1,11 @@
+GOAL=tilemanager.exe
+SOURCES=$(wildcard *.cs)
+CSFLAGS=-debug -pkg:gtk-sharp -pkg:glade-sharp -pkg:gnome-sharp -r:System.Drawing
+
+$(GOAL): $(SOURCES)
+       mcs $(CSFLAGS) $(SOURCES) -out:$(GOAL)
+
+clean:
+       rm -f $(GOAL)
+
+.PHONY: clean