Commit 41bd1480 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Make the makefile use absolute paths for testing

CMake already did this, and I think this is discrepancy is why
if you did `make quick_check`, then `make check_dbg` would fail.
parent ef71d453
......@@ -81,8 +81,8 @@ else
endif
TOOLS_DIR := ./tools
TEST_DIR := ./test
TESTS_DIR := ./test/tests
TEST_DIR := $(abspath ./test)
TESTS_DIR := $(abspath ./test/tests)
GPP := $(GCC_DIR)/bin/g++
GCC := $(GCC_DIR)/bin/gcc
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment