File: Makefile

package info (click to toggle)
parsec47 0.2.dfsg1-8
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 6,168 kB
  • ctags: 12
  • sloc: xml: 2,178; ansic: 47; makefile: 28
file content (12 lines) | stat: -rw-r--r-- 280 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
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 -Wno-deprecated $(DFLAGS) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) $(DSRC) -lSDL -lGL -lSDL_mixer -lbulletml

clean:
	rm -f $(EXE)