Makefile.psp 830 B

1234567891011121314151617181920212223242526
  1. TARGET = sdlpal
  2. OBJS = adplug/binfile.o adplug/emuopl.o adplug/fprovide.o adplug/rix.o \
  3. adplug/binio.o adplug/fmopl.o adplug/player.o \
  4. battle.o getopt.o main.o play.o script.o uigame.o ending.o \
  5. global.o map.o res.o sound.o util.o fight.o input_PSP.o palcommon.o \
  6. rixplay.o text.o video.o font.o itemmenu.o palette.o rngplay.o \
  7. uibattle.o yj1.o game.o magicmenu.o scene.o ui.o
  8. PSPSDK = $(shell psp-config --pspsdk-path)
  9. INCDIR =
  10. CFLAGS = -O3 -G0 -Wall -g `$(PSPSDK)/../bin/sdl-config --cflags` -DPSP=1
  11. CXXFLAGS = $(CFLAGS) -fno-exceptions -fno-rtti `$(PSPSDK)/../bin/sdl-config --cflags`
  12. ASFLAGS = $(CFLAGS)
  13. LIBDIR =
  14. LIBS = `$(PSPSDK)/../bin/sdl-config --libs` -lstdc++
  15. EXTRA_TARGETS = EBOOT.PBP
  16. PSP_EBOOT_TITLE = sdlpal
  17. BUILD_PRX = 1
  18. PSP_FW_VERSION = 371
  19. include $(PSPSDK)/lib/build.mak