box-o-sand/oldstuff/d/prog-lang-book/Makefile
2015-06-22 13:15:42 -05:00

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