File: Makefile

package info (click to toggle)
projectl 1.001.dfsg2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,916 kB
  • sloc: xml: 57; makefile: 26
file content (11 lines) | stat: -rw-r--r-- 268 bytes parent folder | download | duplicates (3)
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 -Wdeprecated $(DFLAGS) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) $(DSRC) -lSDL -lGL -lSDL_mixer

clean:
	rm -f $(EXE)