-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
19 lines (15 loc) · 883 Bytes
/
Copy pathMakefile
File metadata and controls
19 lines (15 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
TARGET = PSP-BookReader
OBJS = src/core/main.o src/core/debug_logger.o lib/pugixml/pugixml.o lib/miniz/miniz.o src/epub/epub_reader.o src/input/input_handler.o src/renderer/text_renderer.o src/renderer/cover_renderer.o src/parser/html_text_extractor.o src/library/library_manager.o
INCDIR = include lib/pugixml lib/miniz $(shell psp-config --psp-prefix)/include/SDL2
CFLAGS = -O2 -G0 -Wall
CXXFLAGS = $(CFLAGS)
ASFLAGS = $(CFLAGS)
LIBDIR =
LDFLAGS =
LIBS = -lSDL2_ttf -lharfbuzz -lfreetype -lbz2 -lSDL2_image -lSDL2main -lSDL2 -lGL -lz -lstdc++ -lpng -ljpeg -lpspvfpu -lpsphprm -lpspaudio -lpspvram -lpspgu -lpspgum -lpsppower -lpsprtc -lpspdebug -lpspdisplay -lpspge -lpspctrl
EXTRA_TARGETS = EBOOT.PBP
PSP_EBOOT_TITLE = PSP-BookReader
PSP_EBOOT_ICON = ICON0.PNG
PSP_EBOOT_ADATA = fonts/Inter-Regular.ttf
PSPSDK=$(shell psp-config --pspsdk-path)
include $(PSPSDK)/lib/build.mak