Files
stb/tests/Makefile

10 lines
289 B
Makefile
Raw Normal View History

2017-01-16 01:28:11 -08:00
INCLUDE = -I..
2017-01-16 01:09:50 -08:00
32:
2017-01-16 01:28:11 -08:00
$(CC) -m32 $(INCLUDE) ../stb_vorbis.c test_c_compilation.c -lm
$(CC) -m32 $(INCLUDE) ../stb_vorbis.c test_cpp_compilation.cpp -lm
2017-01-16 01:09:50 -08:00
64:
2017-01-16 01:28:11 -08:00
$(CC) -m64 $(INCLUDE) ../stb_vorbis.c test_c_compilation.c -lm
$(CC) -m64 $(INCLUDE) ../stb_vorbis.c test_cpp_compilation.cpp -lm