Files
tinyobjloader/tests/Makefile
Syoyo Fujita 72ef6cbb76 Add initial unit test codes using Catch.
Add Kuroga build script.
2016-04-18 16:03:24 +09:00

14 lines
128 B
Makefile

.PHONY: clean
tester: tester.cc
g++ -g -O0 -o tester tester.cc
all: tester
check: tester
./tester
clean:
rm -rf tester