mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 12:02:30 +01:00
647db26552
* . * yaml update * git subrepo pull --force tools/splat subrepo: subdir: "tools/splat" merged: "cd690f725d" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "cd690f725d" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo" commit: "2f68596" * separate main bss syms * renames and one match * SR symbol rename * fix symbol_addrs * git subrepo pull tools/splat subrepo: subdir: "tools/splat" merged: "5fa8aa24ca" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "5fa8aa24ca" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo" commit: "2f68596" * remove old artifacts
12 lines
205 B
Makefile
12 lines
205 B
Makefile
UTIL_DIR := util
|
|
|
|
default: all
|
|
|
|
all: Yay0decompress
|
|
|
|
Yay0decompress:
|
|
gcc $(UTIL_DIR)/n64/Yay0decompress.c -fPIC -shared -O3 -o $(UTIL_DIR)/n64/Yay0decompress
|
|
|
|
clean:
|
|
rm -f $(UTIL_DIR)/n64/Yay0decompress
|