allow some build customization
authornotaz <notasas@gmail.com>
Fri, 7 Jan 2011 21:58:45 +0000 (23:58 +0200)
committernotaz <notasas@gmail.com>
Fri, 7 Jan 2011 21:58:45 +0000 (23:58 +0200)
also correct a statement in readme.

Makefile
frontend/config.h
pandora/readme.txt
plugins/gpu-gles/Makefile
plugins/gpu_unai/Makefile
plugins/spunull/Makefile

index c822bb1..644639b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -14,10 +14,14 @@ endif
 ifndef DEBUG
 CFLAGS += -O2 # -DNDEBUG
 endif
+USE_OSS = 1
+#USE_ALSA = 1
 #DRC_DBG = 1
 #PCNT = 1
 TARGET = pcsx
 
+-include Makefile.local
+
 all: $(TARGET)
 
 # core
@@ -40,9 +44,18 @@ CFLAGS += -DDRC_DBG
 endif
 
 # spu
-OBJS += plugins/dfsound/adsr.o plugins/dfsound/dma.o plugins/dfsound/oss.o plugins/dfsound/reverb.o \
-       plugins/dfsound/xa.o plugins/dfsound/freeze.o plugins/dfsound/cfg.o plugins/dfsound/registers.o \
-       plugins/dfsound/spu.o
+OBJS += plugins/dfsound/adsr.o plugins/dfsound/dma.o plugins/dfsound/reverb.o plugins/dfsound/xa.o \
+       plugins/dfsound/freeze.o plugins/dfsound/cfg.o plugins/dfsound/registers.o plugins/dfsound/spu.o
+ifeq "$(USE_OSS)" "1"
+plugins/dfsound/%.o: CFLAGS += -DUSEOSS
+OBJS += plugins/dfsound/oss.o
+endif
+ifeq "$(USE_ALSA)" "1"
+plugins/dfsound/%.o: CFLAGS += -DUSEALSA
+OBJS += plugins/dfsound/alsa.o
+LDFLAGS += -lasound
+endif
+
 # gpu
 plugins/dfxvideo/%.o: CFLAGS += -Wall
 OBJS += plugins/dfxvideo/gpu.o
index 768460f..15ffd30 100644 (file)
@@ -5,4 +5,3 @@
 #define PACKAGE_VERSION "1.9"
 #define DEF_PLUGIN_DIR "."
 //#define EMU_LOG printf
-#define USEOSS
index 9504226..573a246 100644 (file)
@@ -11,8 +11,7 @@ version is ARM architecture oriented and features MIPS->ARM recompiler by
 Ari64. It was created for Pandora handheld, but should be usable on other
 devices after some code adjustments.
 
-It does not, however, have anything in common with similar psx4all and
-pcsx4all projects, except that all of these are PCSX ports.
+PCSX ReARMed features GPU and SPU plugins from PCSX4ALL project.
 
 
 Usage
index 1110151..4b61b6f 100644 (file)
@@ -24,6 +24,8 @@ LIB = -L$(PREFIX)lib -lGLES_CM -lX11 -lXau -lXdmcp
 \r
 OBJ = gpuDraw.o gpuFps.o gpuPlugin.o gpuPrim.o gpuTexture.o\r
 \r
+-include Makefile.local\r
+\r
 all: $(TARGET)\r
 \r
 $(TARGET): $(OBJ)\r
index 636c31b..a89ca6b 100644 (file)
@@ -11,6 +11,8 @@ CFLAGS += -fno-schedule-insns -fno-schedule-insns2
 TARGET = gpuPCSX4ALL.so
 LDFLAGS += -shared -Wl,-soname,$(TARGET)
 
+-include Makefile.local
+
 all: $(TARGET)
 
 $(TARGET): gpu.cpp ../../frontend/arm_utils.s
index 7371522..f9b76ed 100644 (file)
@@ -2,6 +2,8 @@ CC = $(CROSS_COMPILE)gcc
 
 all: spunull.so
 
+-include Makefile.local
+
 spunull.so: spunull.c
        $(CC) $(CFLAGS) -shared -fPIC -ggdb -O2 -o $@ $^