Fix makefile dependencies

This commit is contained in:
Andreas Zwinkau 2015-01-14 20:56:00 +01:00
parent 90fa520220
commit c64ceeb60f
1 changed files with 7 additions and 2 deletions

View File

@ -3,8 +3,9 @@ INCLUDE_PATHS := -Ilibdparse/src
DMD_FLAGS := -g -w $(INCLUDE_PATHS)
LDC_FLAGS := -g -w -oq $(INCLUDE_PATHS)
dmd: $(SRC)
dmd $(DMD_FLAGS) $(SRC) -ofbin/dfmt
.PHONY: dmd ldc test
dmd: bin/dfmt
ldc: $(SRC)
ldc2 $(LDC_FLAGS) $(SRC) -ofbin/dfmt
@ -12,3 +13,7 @@ ldc: $(SRC)
test: bin/dfmt
cd tests && ./test.sh
bin/dfmt: $(SRC)
dmd $(DMD_FLAGS) $(SRC) -ofbin/dfmt