28 lines
508 B
Makefile
28 lines
508 B
Makefile
TARGET = psxsplash
|
|
TYPE = ps-exe
|
|
|
|
SRCS = \
|
|
src/main.cpp \
|
|
src/renderer.cpp \
|
|
src/splashpack.cpp \
|
|
src/camera.cpp \
|
|
src/gtemath.cpp \
|
|
src/worldcollision.cpp \
|
|
src/navregion.cpp \
|
|
src/triclip.cpp \
|
|
src/lua.cpp \
|
|
src/luaapi.cpp \
|
|
src/scenemanager.cpp \
|
|
src/sceneloader.cpp \
|
|
src/audiomanager.cpp \
|
|
src/controls.cpp \
|
|
src/profiler.cpp \
|
|
src/collision.cpp \
|
|
src/bvh.cpp \
|
|
src/cutscene.cpp
|
|
|
|
CPPFLAGS += -DPCDRV_SUPPORT=1
|
|
|
|
include third_party/nugget/psyqo-lua/psyqo-lua.mk
|
|
include third_party/nugget/psyqo/psyqo.mk
|