projects
/
supertux.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
forgot more stuff
[supertux.git]
/
tools
/
tilemanager
/
Makefile
1
GOAL=tilemanager.exe
2
SOURCES=$(wildcard *.cs)
3
CSFLAGS=-debug -pkg:gtk-sharp -pkg:glade-sharp -pkg:gnome-sharp -r:System.Drawing
4
RESOURCES=tiler.glade
5
CSFLAGS+=$(foreach file,$(RESOURCES),-resource:$(file) )
6
7
$(GOAL): $(SOURCES) $(RESOURCES)
8
mcs $(CSFLAGS) $(SOURCES) -out:$(GOAL)
9
10
clean:
11
rm -f $(GOAL)
12
13
.PHONY: clean