mirror of
https://github.com/pmret/papermario.git
synced 2024-11-10 04:52:34 +01:00
12 lines
193 B
Makefile
12 lines
193 B
Makefile
|
UTIL_DIR := util
|
||
|
|
||
|
default: all
|
||
|
|
||
|
all: Yay0decompress
|
||
|
|
||
|
Yay0decompress:
|
||
|
gcc $(UTIL_DIR)/Yay0decompress.c -fPIC -shared -O3 -o $(UTIL_DIR)/Yay0decompress
|
||
|
|
||
|
clean:
|
||
|
rm -f $(UTIL_DIR)/Yay0decompress
|