improve makefile
o add 'install' target o shorten the name of INCLUDE_PATHS to IMPORTS o use filename prerequisities and targets rather than phony keywords o add a dependency on .git/refs/tags for the githash target o add githash.txt and dfmt-test to the clean target o add more targets to .PHONY
This commit is contained in:
parent
2ea6c43a66
commit
fa463b472c
51
makefile
51
makefile
|
@ -1,53 +1,64 @@
|
||||||
|
PREFIX = /usr/local
|
||||||
|
|
||||||
SRC := $(shell find src -name "*.d") \
|
SRC := $(shell find src -name "*.d") \
|
||||||
$(shell find libdparse/src -name "*.d") \
|
$(shell find libdparse/src -name "*.d") \
|
||||||
$(shell find stdx-allocator/source -name "*.d")
|
$(shell find stdx-allocator/source -name "*.d")
|
||||||
INCLUDE_PATHS := -Ilibdparse/src -Istdx-allocator/source -Isrc -Jbin
|
IMPORTS := -Ilibdparse/src -Istdx-allocator/source -Isrc -Jbin
|
||||||
DMD_COMMON_FLAGS := -dip25 -w $(INCLUDE_PATHS)
|
|
||||||
DMD_DEBUG_FLAGS := -debug -g $(DMD_COMMON_FLAGS)
|
|
||||||
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)
|
|
||||||
override DMD_FLAGS += $(DFLAGS)
|
|
||||||
override LDC_FLAGS += $(DFLAGS)
|
|
||||||
override GDC_FLAGS += $(DFLAGS)
|
|
||||||
DC ?= dmd
|
DC ?= dmd
|
||||||
LDC ?= ldc2
|
LDC ?= ldc2
|
||||||
GDC ?= gdc
|
GDC ?= gdc
|
||||||
|
|
||||||
.PHONY: dmd ldc gdc test
|
DMD_COMMON_FLAGS := -w $(IMPORTS)
|
||||||
|
DMD_DEBUG_FLAGS := -debug -g $(DMD_COMMON_FLAGS)
|
||||||
|
DMD_FLAGS := -O -inline $(DMD_COMMON_FLAGS)
|
||||||
|
DMD_TEST_FLAGS := -unittest -g $(DMD_COMMON_FLAGS)
|
||||||
|
LDC_FLAGS := -g -w -oq $(IMPORTS)
|
||||||
|
GDC_FLAGS := -g -w -oq $(IMPORTS)
|
||||||
|
override DMD_FLAGS += $(DFLAGS)
|
||||||
|
override LDC_FLAGS += $(DFLAGS)
|
||||||
|
override GDC_FLAGS += $(DFLAGS)
|
||||||
|
|
||||||
dmd: bin/dfmt
|
.PHONY: all clean install debug dmd ldc gdc pkg release test
|
||||||
|
|
||||||
githash:
|
all: bin/dfmt
|
||||||
|
|
||||||
|
bin/githash.txt:
|
||||||
mkdir -p bin
|
mkdir -p bin
|
||||||
git describe --tags > bin/githash.txt
|
git describe --tags > bin/githash.txt
|
||||||
|
|
||||||
ldc: githash
|
dmd: bin/dfmt
|
||||||
|
|
||||||
|
ldc: bin/githash.txt
|
||||||
$(LDC) $(SRC) $(LDC_FLAGS) -ofbin/dfmt
|
$(LDC) $(SRC) $(LDC_FLAGS) -ofbin/dfmt
|
||||||
-rm -f *.o
|
-rm -f *.o
|
||||||
|
|
||||||
gdc:githash
|
gdc: bin/githash.txt
|
||||||
$(GDC) $(SRC) $(GDC_FLAGS) -obin/dfmt
|
$(GDC) $(SRC) $(GDC_FLAGS) -obin/dfmt
|
||||||
|
|
||||||
test: debug
|
test: debug
|
||||||
cd tests && ./test.d
|
cd tests && ./test.d
|
||||||
|
|
||||||
bin/dfmt-test: githash $(SRC)
|
bin/dfmt-test: bin/githash.txt $(SRC)
|
||||||
$(DC) $(DMD_TEST_FLAGS) $^ -of$@
|
$(DC) $(DMD_TEST_FLAGS) $^ -of$@
|
||||||
|
|
||||||
bin/dfmt: githash $(SRC)
|
bin/dfmt: bin/githash.txt $(SRC)
|
||||||
$(DC) $(DMD_FLAGS) $(filter %.d,$^) -of$@
|
$(DC) $(DMD_FLAGS) $(filter %.d,$^) -of$@
|
||||||
|
|
||||||
debug: githash $(SRC)
|
debug: bin/githash.txt $(SRC)
|
||||||
$(DC) $(DMD_DEBUG_FLAGS) $(filter %.d,$^) -ofbin/dfmt
|
$(DC) $(DMD_DEBUG_FLAGS) $(filter %.d,$^) -ofbin/dfmt
|
||||||
|
|
||||||
pkg: dmd
|
pkg: dmd
|
||||||
$(MAKE) -f makd/Makd.mak pkg
|
$(MAKE) -f makd/Makd.mak pkg
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RM) bin/dfmt
|
$(RM) bin/dfmt bin/dfmt-test bin/githash.txt
|
||||||
|
|
||||||
|
install:
|
||||||
|
chmod +x bin/dfmt
|
||||||
|
mkdir -p $(DESTDIR)$(PREFIX)/bin
|
||||||
|
cp -f bin/dfmt $(DESTDIR)$(PREFIX)/bin/dfmt
|
||||||
|
|
||||||
release:
|
release:
|
||||||
./release.sh
|
./release.sh
|
||||||
githash
|
$(MAKE) bin/githash.txt
|
||||||
|
|
Loading…
Reference in New Issue