File: Makefile

package info (click to toggle)
torus-trooper 0.22.dfsg1-13
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 7,520 kB
  • sloc: xml: 839; makefile: 22
file content (11 lines) | stat: -rw-r--r-- 267 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
GDC=gdc
DSRC=$(shell find import src -name '*.d' | LC_ALL=C sort)
EXE=torus-trooper

all: $(EXE)

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

clean:
	rm -f $(EXE)