Update makefile

This commit is contained in:
Hackerpilot 2015-04-27 15:49:40 -07:00
parent 74400b677c
commit 5355ae1c1d
1 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,8 @@
SRC := $(shell find src -name "*.d") $(shell find libdparse/src -name "*.d")
INCLUDE_PATHS := -Ilibdparse/src -Isrc
DMD_FLAGS := -O -inline $(INCLUDE_PATHS)
DMD_TEST_FLAGS := -unittest -g -w $(INCLUDE_PATHS)
DMD_COMMON_FLAGS := -dip25 -w $(INCLUDE_PATHS)
DMD_FLAGS := -O -inline $(DMD_COMMON_FLAGS)
DMD_TEST_FLAGS := -unittest -g $(DMD_COMMON_FLAGS)
LDC_FLAGS := -g -w -oq $(INCLUDE_PATHS)
.PHONY: dmd ldc test