From d71aea034b78a65b307b64dee4dee6453640f791 Mon Sep 17 00:00:00 2001 From: Sean Barrett Date: Mon, 16 Jan 2017 01:41:23 -0800 Subject: [PATCH] makefile --- tests/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Makefile b/tests/Makefile index ace27c8..85a7e1d 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -2,9 +2,9 @@ INCLUDE = -I.. DEFINES = -DSTB_C_LEXER_SELF_TEST 32: - $(CC) -m32 $(INCLUDE) $(DEFINES) ../stb_vorbis.c test_c_compilation.c ../stb.c -lm + $(CC) -m32 $(INCLUDE) $(DEFINES) ../stb_vorbis.c test_c_compilation.c stb.c -lm $(CC) -m32 $(INCLUDE) $(DEFINES) ../stb_vorbis.c test_cpp_compilation.cpp -lm 64: - $(CC) -m64 $(INCLUDE) $(DEFINES) ../stb_vorbis.c test_c_compilation.c ../stb.c -lm + $(CC) -m64 $(INCLUDE) $(DEFINES) ../stb_vorbis.c test_c_compilation.c stb.c -lm $(CC) -m64 $(INCLUDE) $(DEFINES) ../stb_vorbis.c test_cpp_compilation.cpp -lm