mirror of
https://github.com/lighttransport/tinyusdz.git
synced 2026-01-18 01:11:17 +01:00
15 lines
277 B
Makefile
15 lines
277 B
Makefile
CXX=clang++
|
|
CXXFLAGS=-Weverything -Wall
|
|
|
|
.PHONY: clean
|
|
|
|
all: tinyxml2.o
|
|
$(CXX) $(CXXFLAGS) -o materialx_test -I../../src/external materialx-main.cc tinyxml2.o
|
|
|
|
tinyxml2.o: ../../src/external/tinyxml2/tinyxml2.cpp
|
|
$(CXX) -o $@ -c $<
|
|
|
|
|
|
clean:
|
|
rm -rf materialx_test tinyxml2.o
|