Clean up example makefile to properly support externally supported paths. (This is a tiny fix to PR 193)

This commit is contained in:
Mark VanderVoord
2019-07-07 14:43:20 -04:00
parent 035141e2ab
commit f909378a1d
3 changed files with 13 additions and 13 deletions
+4 -4
View File
@@ -1,8 +1,8 @@
CC ?= gcc
BUILD_DIR ?= ./build
SRC_DIR ?= ./src
TEST_DIR ?= ./test
TEST_BUILD_DIR ?= ${BUILD_DIR}/test
export BUILD_DIR ?= ./build
export SRC_DIR ?= ./src
export TEST_DIR ?= ./test
export TEST_BUILD_DIR ?= ${BUILD_DIR}/test
TEST_MAKEFILE = ${TEST_BUILD_DIR}/MakefileTestSupport
OBJ ?= ${BUILD_DIR}/obj
OBJ_DIR = ${OBJ}