From 21913be792ec40f386c955a47fb6f9c50676f0b6 Mon Sep 17 00:00:00 2001 From: Sean Barrett Date: Mon, 16 Jan 2017 01:14:08 -0800 Subject: [PATCH] makefile --- tests/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/Makefile b/tests/Makefile index 45db169..561051f 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,7 +1,7 @@ 32: - $CC -m32 stb_vorbis.c test_c_compilation.c - $CC -m32 stb_vorbis.c test_cpp_compilation.cpp + $(CC) -m32 stb_vorbis.c test_c_compilation.c + $(CC) -m32 stb_vorbis.c test_cpp_compilation.cpp 64: - $CC -m64 stb_vorbis.c test_c_compilation.c - $CC -m64 stb_vorbis.c test_cpp_compilation.cpp + $(CC) -m64 stb_vorbis.c test_c_compilation.c + $(CC) -m64 stb_vorbis.c test_cpp_compilation.cpp