fix: changed test executables to the bin/test directory
This commit is contained in:
12
makefile
12
makefile
@@ -11,9 +11,9 @@ format:
|
|||||||
clang-format -i niarena.h
|
clang-format -i niarena.h
|
||||||
|
|
||||||
test: bin/test
|
test: bin/test
|
||||||
bin/niarena_test
|
bin/test/niarena_test
|
||||||
bin/niarena_test_alloc_arena
|
bin/test/niarena_test_alloc_arena
|
||||||
bin/niarena_test_alloc_buffer
|
bin/test/niarena_test_alloc_buffer
|
||||||
|
|
||||||
leaks: bin/test
|
leaks: bin/test
|
||||||
leaks --atExit -- bin/niarena_test
|
leaks --atExit -- bin/niarena_test
|
||||||
@@ -24,6 +24,6 @@ leaks: bin/test
|
|||||||
|
|
||||||
bin/test: test/niarena_test.c
|
bin/test: test/niarena_test.c
|
||||||
mkdir -p bin/test
|
mkdir -p bin/test
|
||||||
cc ${DEBUG_flags} test/niarena_test.c -o bin/niarena_test
|
cc ${DEBUG_flags} test/niarena_test.c -o bin/test/niarena_test
|
||||||
cc ${DEBUG_flags} test/niarena_test_alloc_buffer.c -o bin/niarena_test_alloc_buffer
|
cc ${DEBUG_flags} test/niarena_test_alloc_buffer.c -o bin/test/niarena_test_alloc_buffer
|
||||||
cc ${DEBUG_flags} test/niarena_test_alloc_buffer.c -o bin/niarena_test_alloc_arena
|
cc ${DEBUG_flags} test/niarena_test_alloc_buffer.c -o bin/test/niarena_test_alloc_arena
|
||||||
Reference in New Issue
Block a user