Update of /cvsroot/super-tux/supertux/contrib/tilemanager
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6245
Added Files:
Makefile
Log Message:
forgot to add makefile
--- NEW FILE: Makefile ---
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
|