mirror of
https://github.com/zeldaret/oot
synced 2026-05-23 06:54:24 -04:00
a5b8a507fc
* fixup n64texconv app usage text and check u32|u64 * fix memory leaks in build_from_png * yeet -Werror * Remove n64texconv/ap and create build_jfif * gitignore build_jfif binary, oops * Makefile: Add BUILD_FROM_PNG and BUILD_JFIF variables
16 lines
318 B
Makefile
16 lines
318 B
Makefile
all:
|
|
# must build n64texconv before build_from_png and build_jfif
|
|
$(MAKE) -C n64texconv
|
|
$(MAKE) -C build_from_png
|
|
$(MAKE) -C build_jfif
|
|
|
|
clean:
|
|
$(MAKE) -C n64texconv clean
|
|
$(MAKE) -C build_from_png clean
|
|
$(MAKE) -C build_jfif clean
|
|
|
|
distclean: clean
|
|
$(MAKE) -C n64texconv distclean
|
|
|
|
.PHONY: all clean distclean
|