File: makefile.patch

package info (click to toggle)
parsec47 0.2.dfsg1-11
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 6,352 kB
  • sloc: xml: 2,178; ansic: 47; makefile: 28
file content (19 lines) | stat: -rw-r--r-- 523 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright (C) 2007  Marcel Unbehaun <frostworks@gmx.de>
# Copyright (C) 2007  Miriam Ruiz <little_miry@yahoo.es>
# Distributed under the same license as the game. See debian/copyright.

--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+GDC=gdc
+DSRC=src/mt.d $(shell find import src/abagames -name "*.d" | LC_ALL=C sort)
+EXE=parsec47
+
+all: $(EXE)
+
+$(EXE): $(DSRC)
+	$(GDC) -o $@ -Iimport -Isrc -Wdeprecated $(DFLAGS) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) $(DSRC) -lSDL -lGL -lSDL_mixer -lbulletml
+
+clean:
+	rm -f $(EXE)
+