18 lines
294 B
Makefile
18 lines
294 B
Makefile
.PHONY: all cleansub
|
|
all:
|
|
mkpsxiso -y ./isoconfig.xml
|
|
cleansub:
|
|
$(MAKE) clean
|
|
rm -f hello_str.cue hello_str.bin
|
|
rm -f *.mcd *.frag *.lua *.vert
|
|
|
|
TARGET = hello_str
|
|
|
|
SRCS = hello_str.c \
|
|
src/str.c \
|
|
src/mod.c \
|
|
third_party/nugget/modplayer/modplayer.c \
|
|
HIT/SHIN1.HIT \
|
|
|
|
include common.mk
|