21 lines
474 B
Makefile
21 lines
474 B
Makefile
TARGET = psxsplash
|
|
TYPE = ps-exe
|
|
|
|
SRCS = \
|
|
src/main.cpp \
|
|
src/renderer.cpp \
|
|
src/splashpack.cpp \
|
|
src/camera.cpp \
|
|
src/gtemath.cpp \
|
|
src/navmesh.cpp \
|
|
src/lua.cpp \
|
|
src/scenemanager.cpp \
|
|
src/controls.cpp \
|
|
output.o
|
|
|
|
include third_party/nugget/psyqo-lua/psyqo-lua.mk
|
|
include third_party/nugget/psyqo/psyqo.mk
|
|
|
|
%.o: %.bin
|
|
$(PREFIX)-objcopy -I binary --set-section-alignment .data=4 --rename-section .data=.rodata,alloc,load,readonly,data,contents -O $(FORMAT) -B mips $< $@
|