mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 20:12:30 +01:00
e61e67ea9b
* formatting * format + misc work * lots of work on npc.c * PR comments, asm delet + other misc fixes * missed one * temporarily remove cleanup step for testing * test fix for splat * test * o2 * o0 * fix Yay0decompress.c bug * debug logging * stuff * stuff2 * restore stuff * more PR comments and some general cleanup * NPC flags + improve match + misc Co-authored-by: Ethan Roseman <ethteck@gmail.com>
12 lines
219 B
Makefile
12 lines
219 B
Makefile
UTIL_DIR := util
|
|
|
|
default: all
|
|
|
|
all: Yay0decompress
|
|
|
|
Yay0decompress:
|
|
gcc $(UTIL_DIR)/n64/Yay0decompress.c -fPIC -shared -O3 -o $(UTIL_DIR)/n64/Yay0decompress -Wall -Wextra
|
|
|
|
clean:
|
|
rm -f $(UTIL_DIR)/n64/Yay0decompress
|