mirror of
https://github.com/HackerN64/HackerOoT.git
synced 2026-01-21 10:37:37 -08:00
16 lines
299 B
Makefile
16 lines
299 B
Makefile
-include ../print_rules.mk
|
|
|
|
all:
|
|
# must build n64texconv before build_from_png
|
|
$(V)$(MAKE) -C n64texconv
|
|
$(V)$(MAKE) -C build_from_png
|
|
|
|
clean:
|
|
$(V)$(MAKE) -C n64texconv clean
|
|
$(V)$(MAKE) -C build_from_png clean
|
|
|
|
distclean: clean
|
|
$(V)$(MAKE) -C n64texconv distclean
|
|
|
|
.PHONY: all clean distclean
|