Fix makefile dependencies
This commit is contained in:
parent
90fa520220
commit
c64ceeb60f
9
makefile
9
makefile
|
@ -3,8 +3,9 @@ INCLUDE_PATHS := -Ilibdparse/src
|
||||||
DMD_FLAGS := -g -w $(INCLUDE_PATHS)
|
DMD_FLAGS := -g -w $(INCLUDE_PATHS)
|
||||||
LDC_FLAGS := -g -w -oq $(INCLUDE_PATHS)
|
LDC_FLAGS := -g -w -oq $(INCLUDE_PATHS)
|
||||||
|
|
||||||
dmd: $(SRC)
|
.PHONY: dmd ldc test
|
||||||
dmd $(DMD_FLAGS) $(SRC) -ofbin/dfmt
|
|
||||||
|
dmd: bin/dfmt
|
||||||
|
|
||||||
ldc: $(SRC)
|
ldc: $(SRC)
|
||||||
ldc2 $(LDC_FLAGS) $(SRC) -ofbin/dfmt
|
ldc2 $(LDC_FLAGS) $(SRC) -ofbin/dfmt
|
||||||
|
@ -12,3 +13,7 @@ ldc: $(SRC)
|
||||||
|
|
||||||
test: bin/dfmt
|
test: bin/dfmt
|
||||||
cd tests && ./test.sh
|
cd tests && ./test.sh
|
||||||
|
|
||||||
|
bin/dfmt: $(SRC)
|
||||||
|
dmd $(DMD_FLAGS) $(SRC) -ofbin/dfmt
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue