File: Makefile

package info (click to toggle)
tatan 1.0.dfsg1-7
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 2,408 kB
  • ctags: 5
  • sloc: xml: 57; makefile: 31
file content (11 lines) | stat: -rw-r--r-- 298 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
GDC=gdc
DSRC=$(shell find import src -name "*.d" -not -iname '*mpeg*' -not -iname 'sdl_ttf.d' | LC_ALL=C sort)
EXE=tatan

all: $(EXE)

$(EXE): $(DSRC)
	$(GDC) -o $@ -Iimport -Isrc -Wno-deprecated $(DFLAGS) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) $(DSRC) -lSDL -lGLU -lGL -lSDL_mixer

clean:
	rm -f $(EXE)