Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrelouys committed Dec 9, 2023
1 parent 90c8bb8 commit c089dd5
Show file tree
Hide file tree
Showing 21 changed files with 7,334 additions and 0 deletions.
27 changes: 27 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
TARGET = hello
OBJS = main.o \
graphics.o \
flib.o \
framebuffer.o \
audio.o \
utility.o \
tex.o \
mp3utils.o

CFLAGS = -O2 -G0 -Wall
CXXFLAGS = $(CFLAGS) -fno-exceptions -fno-rtti
ASFLAGS = $(CFLAGS)

LIBDIR =
LDFLAGS =
LIBS= -lpng -ljpeg -lz -lmad -lm -lpspaudiolib -lSDL_ttf -lfreetype

EXTRA_TARGETS = EBOOT.PBP
PSP_EBOOT_TITLE = RosettaShard

PSPSDK=$(shell psp-config --pspsdk-path)
PSPBIN = $(PSPSDK)/../bin
CFLAGS += $(shell $(PSPBIN)/sdl-config --cflags)
CXXFLAGS += $(shell $(PSPBIN)/sdl-config --cflags)
LIBS += $(shell $(PSPBIN)/sdl-config --libs)
include $(PSPSDK)/lib/build.mak
Binary file added README.txt
Binary file not shown.
Loading

0 comments on commit c089dd5

Please sign in to comment.