Use environment variables to choose compilers
This commit is contained in:
parent
ad1cea991f
commit
480e6fe973
13
makefile
13
makefile
|
@ -8,26 +8,29 @@ DMD_FLAGS := -O -inline $(DMD_COMMON_FLAGS)
|
||||||
DMD_TEST_FLAGS := -unittest -g $(DMD_COMMON_FLAGS)
|
DMD_TEST_FLAGS := -unittest -g $(DMD_COMMON_FLAGS)
|
||||||
LDC_FLAGS := -g -w -oq $(INCLUDE_PATHS)
|
LDC_FLAGS := -g -w -oq $(INCLUDE_PATHS)
|
||||||
GDC_FLAGS := -g -w -oq $(INCLUDE_PATHS)
|
GDC_FLAGS := -g -w -oq $(INCLUDE_PATHS)
|
||||||
|
DC ?= dmd
|
||||||
|
LDC ?= ldc2
|
||||||
|
GDC ?= gdc
|
||||||
|
|
||||||
.PHONY: dmd ldc gdc test
|
.PHONY: dmd ldc gdc test
|
||||||
|
|
||||||
dmd: bin/dfmt
|
dmd: bin/dfmt
|
||||||
|
|
||||||
ldc: $(SRC)
|
ldc: $(SRC)
|
||||||
ldc2 $(LDC_FLAGS) $^ -ofbin/dfmt
|
$(LDC) $(LDC_FLAGS) $^ -ofbin/dfmt
|
||||||
-rm -f *.o
|
-rm -f *.o
|
||||||
|
|
||||||
gdc: $(SRC)
|
gdc: $(SRC)
|
||||||
gdc $(GDC_FLAGS) $^ -obin/dfmt
|
$(GDC) $(GDC_FLAGS) $^ -obin/dfmt
|
||||||
|
|
||||||
test: bin/dfmt
|
test: bin/dfmt
|
||||||
cd tests && ./test.sh
|
cd tests && ./test.sh
|
||||||
|
|
||||||
bin/dfmt-test: $(SRC)
|
bin/dfmt-test: $(SRC)
|
||||||
dmd $(DMD_TEST_FLAGS) $^ -of$@
|
$(DC) $(DMD_TEST_FLAGS) $^ -of$@
|
||||||
|
|
||||||
bin/dfmt: $(SRC)
|
bin/dfmt: $(SRC)
|
||||||
dmd $(DMD_FLAGS) $^ -of$@
|
$(DC) $(DMD_FLAGS) $^ -of$@
|
||||||
|
|
||||||
debug: $(SRC)
|
debug: $(SRC)
|
||||||
dmd $(DMD_DEBUG_FLAGS) $^ -ofbin/dfmt
|
$(DC) $(DMD_DEBUG_FLAGS) $^ -ofbin/dfmt
|
||||||
|
|
Loading…
Reference in New Issue