From: Matthias Braun Date: Mon, 22 Nov 2004 01:53:13 +0000 (+0000) Subject: forgot to add makefile X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=7d672438b452279419c1427904d8b43c017f3465;p=supertux.git forgot to add makefile SVN-Revision: 2129 --- diff --git a/contrib/tilemanager/Makefile b/contrib/tilemanager/Makefile new file mode 100644 index 000000000..90c8c9be2 --- /dev/null +++ b/contrib/tilemanager/Makefile @@ -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