From 2fbb5aa6e16f620d89fd9bc9a0adc51d846cc8ee Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Sun, 11 Feb 2018 17:18:42 +0100 Subject: [PATCH] update makefile --- makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/makefile b/makefile index 00be4b2..df5e3fb 100644 --- a/makefile +++ b/makefile @@ -12,6 +12,7 @@ LDC := ldc2 DPARSE_DIR := libdparse DSYMBOL_DIR := dsymbol +STDXALLOC_DIR := stdx-allocator githash: git log -1 --format="%H" > githash.txt @@ -57,6 +58,7 @@ SERVER_SRC := \ $(shell find src/dcd/common -name "*.d")\ $(shell find src/dcd/server -name "*.d")\ $(shell find ${DSYMBOL_DIR}/src -name "*.d")\ + $(shell find ${STDXALLOC_DIR}/source -name "*.d")\ ${DPARSE_DIR}/src/dparse/ast.d\ ${DPARSE_DIR}/src/dparse/entities.d\ ${DPARSE_DIR}/src/dparse/lexer.d\ @@ -82,6 +84,7 @@ DMD_SERVER_FLAGS := -Icontainers/src\ -Imsgpack-d/src\ -I${DPARSE_DIR}/src\ -I${DSYMBOL_DIR}/src\ + -I${STDXALLOC_DIR}/source\ -J.\ -wi\ -O\