aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/gpu-gles/Makefile2
-rw-r--r--plugins/gpu_unai/Makefile2
-rw-r--r--plugins/spunull/Makefile2
3 files changed, 6 insertions, 0 deletions
diff --git a/plugins/gpu-gles/Makefile b/plugins/gpu-gles/Makefile
index 1110151..4b61b6f 100644
--- a/plugins/gpu-gles/Makefile
+++ b/plugins/gpu-gles/Makefile
@@ -24,6 +24,8 @@ LIB = -L$(PREFIX)lib -lGLES_CM -lX11 -lXau -lXdmcp
OBJ = gpuDraw.o gpuFps.o gpuPlugin.o gpuPrim.o gpuTexture.o
+-include Makefile.local
+
all: $(TARGET)
$(TARGET): $(OBJ)
diff --git a/plugins/gpu_unai/Makefile b/plugins/gpu_unai/Makefile
index 636c31b..a89ca6b 100644
--- a/plugins/gpu_unai/Makefile
+++ b/plugins/gpu_unai/Makefile
@@ -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
diff --git a/plugins/spunull/Makefile b/plugins/spunull/Makefile
index 7371522..f9b76ed 100644
--- a/plugins/spunull/Makefile
+++ b/plugins/spunull/Makefile
@@ -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 $@ $^