diff options
author | aliaspider | 2014-12-10 12:29:19 +0100 |
---|---|---|
committer | aliaspider | 2014-12-10 12:29:19 +0100 |
commit | 6d7fd87e07f157237319b51a8e0583ce0a4a5e6d (patch) | |
tree | e9382c5c647f64e1473117101f4bddf1e708148d /psp | |
parent | 41484cd73c4114228c12f6456f61cc5caa72fecf (diff) | |
download | picogpsp-6d7fd87e07f157237319b51a8e0583ce0a4a5e6d.tar.gz picogpsp-6d7fd87e07f157237319b51a8e0583ce0a4a5e6d.tar.bz2 picogpsp-6d7fd87e07f157237319b51a8e0583ce0a4a5e6d.zip |
add a HAVE_MMAP check, cleanups.
Diffstat (limited to 'psp')
-rw-r--r-- | psp/Makefile | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/psp/Makefile b/psp/Makefile deleted file mode 100644 index 9906e6f..0000000 --- a/psp/Makefile +++ /dev/null @@ -1,26 +0,0 @@ -# -x assembler-with-cpp -# gpSP makefile -# Gilead Kutnick - Exophase - -# Global definitions - -PSPSDK = ${shell psp-config --pspsdk-path} -PREFIX = ${shell psp-config --psp-prefix} - -OBJS = main.o cpu.o video.o memory.o sound.o input.o \ - cpu_threaded.o gui.o zip.o cheats.o mips_stub.o - -TARGET = gpSP - -VPATH += .. -CFLAGS += -O3 -DPSP_BUILD -G0 -funsigned-char -CFLAGS += ${shell ${PREFIX}/bin/sdl-config --cflags} -ASFLAGS = ${CFLAGS} -PSP_EBOOT_TITLE = gpSP -EXTRA_TARGETS = EBOOT.PBP - -LIBS += ${shell ${PREFIX}/bin/sdl-config --libs} -lpsppower \ - -lz - -include ${PSPSDK}/lib/build.mak - |