File: Makefile

package info (click to toggle)
projectl 1.001.dfsg1-8
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,716 kB
  • ctags: 5
  • sloc: xml: 57; makefile: 32
file content (11 lines) | stat: -rw-r--r-- 271 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*' | LC_ALL=C sort)
EXE=projectl

all: $(EXE)

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

clean:
	rm -f $(EXE)