summary refs log tree commit diff
path: root/misc/psp/Makefile
blob: 45dde84405c1c603d6b9dbae7414a701e5607993 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
TARGET 	= ClassiCube-psp
SOURCES	= $(wildcard src/*.c) $(wildcard third_party/bearssl/src/*.c)
OBJS   	= $(patsubst %.c, %.o, $(SOURCES))

INCDIR   = third_party/bearssl/inc
CFLAGS   = -g -O1 -fno-math-errno
ASFLAGS  = $(CFLAGS)

LIBDIR  =
LDFLAGS =
LIBS    = -lm -lpspgum -lpspgu -lpspge -lpspdisplay -lpspctrl

BUILD_PRX = 1

EXTRA_TARGETS   = EBOOT.PBP
PSP_EBOOT_TITLE = ClassiCube

PSPSDK=$(shell psp-config --pspsdk-path)
include $(PSPSDK)/lib/build.mak