Use environment variables to choose compilers

This commit is contained in:
Hackerpilot 2015-09-16 17:16:49 -07:00
parent ad1cea991f
commit 480e6fe973
1 changed files with 8 additions and 5 deletions

View File

@ -8,26 +8,29 @@ DMD_FLAGS := -O -inline $(DMD_COMMON_FLAGS)
DMD_TEST_FLAGS := -unittest -g $(DMD_COMMON_FLAGS)
LDC_FLAGS := -g -w -oq $(INCLUDE_PATHS)
GDC_FLAGS := -g -w -oq $(INCLUDE_PATHS)
DC ?= dmd
LDC ?= ldc2
GDC ?= gdc
.PHONY: dmd ldc gdc test
dmd: bin/dfmt
ldc: $(SRC)
ldc2 $(LDC_FLAGS) $^ -ofbin/dfmt
$(LDC) $(LDC_FLAGS) $^ -ofbin/dfmt
-rm -f *.o
gdc: $(SRC)
gdc $(GDC_FLAGS) $^ -obin/dfmt
$(GDC) $(GDC_FLAGS) $^ -obin/dfmt
test: bin/dfmt
cd tests && ./test.sh
bin/dfmt-test: $(SRC)
dmd $(DMD_TEST_FLAGS) $^ -of$@
$(DC) $(DMD_TEST_FLAGS) $^ -of$@
bin/dfmt: $(SRC)
dmd $(DMD_FLAGS) $^ -of$@
$(DC) $(DMD_FLAGS) $^ -of$@
debug: $(SRC)
dmd $(DMD_DEBUG_FLAGS) $^ -ofbin/dfmt
$(DC) $(DMD_DEBUG_FLAGS) $^ -ofbin/dfmt