mirror of
https://github.com/zeldaret/oot.git
synced 2025-05-10 11:03:46 +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
|