projects
/
supertux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0da72d5
)
forgot to add makefile
author
Matthias Braun
<matze@braunis.de>
Mon, 22 Nov 2004 01:53:13 +0000
(
01:53
+0000)
committer
Matthias 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]
patch
|
blob
diff --git a/contrib/tilemanager/Makefile
b/contrib/tilemanager/Makefile
new file mode 100644
(file)
index 0000000..
90c8c9b
--- /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