mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-23 15:31:15 +00:00
13 lines
251 B
Makefile
13 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
|