10 lines
165 B
Makefile
10 lines
165 B
Makefile
ALL_SOURCES := $(shell find src -name '*.d')
|
|
ALL_TARGETS := $(patsubst src/%.d,bin/%,$(ALL_SOURCES))
|
|
|
|
bin/%: src/%.d
|
|
dmd $^ -of$@
|
|
|
|
all: $(ALL_TARGETS)
|
|
|
|
.PHONY: all
|