File: Makefile

package info (click to toggle)
gunroar 0.15.dfsg1-10
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 6,868 kB
  • sloc: xml: 63; makefile: 22
file content (11 lines) | stat: -rw-r--r-- 261 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
GDC=gdc
DSRC=$(shell find import src/abagames -name "*.d" | LC_ALL=C sort)
EXE=gunroar

all: $(EXE)

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

clean:
	rm -f $(EXE)