blob: 5776cc8f16bcf457e8aec79481afc74ab88f4333 [file] [edit]
# tinygltf v3 (C) — convenience build entry point.
#
# make — build all v3 C unit testers
# make test — build and run all v3 C unit testers
# make clean — remove test binaries
all:
$(MAKE) -C tests all
test: all
$(MAKE) -C tests run
clean:
$(MAKE) -C tests clean