oot/tools/assets/Makefile

14 lines
251 B
Makefile

all:
# must build n64texconv before build_from_png
$(MAKE) -C n64texconv
$(MAKE) -C build_from_png
clean:
$(MAKE) -C n64texconv clean
$(MAKE) -C build_from_png clean
distclean: clean
$(MAKE) -C n64texconv distclean
.PHONY: all clean distclean