aboutsummaryrefslogtreecommitdiff
path: root/plugins/dfxvideo/Makefile
diff options
context:
space:
mode:
authornotaz2012-04-20 02:28:55 +0300
committernotaz2012-04-22 01:58:03 +0300
commit4132e8ca13b6395f8a9ef7ec7d01cbdcc19c037d (patch)
treeca9037636932b6e3914e9c98c7c3da9a83796686 /plugins/dfxvideo/Makefile
parent4a35de071887026bb6dcd6b852738a1866959df7 (diff)
downloadpcsx_rearmed-4132e8ca13b6395f8a9ef7ec7d01cbdcc19c037d.tar.gz
pcsx_rearmed-4132e8ca13b6395f8a9ef7ec7d01cbdcc19c037d.tar.bz2
pcsx_rearmed-4132e8ca13b6395f8a9ef7ec7d01cbdcc19c037d.zip
bring in configure build system
not using autotools, trying to do something similar like qemu instead.
Diffstat (limited to 'plugins/dfxvideo/Makefile')
-rw-r--r--plugins/dfxvideo/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/dfxvideo/Makefile b/plugins/dfxvideo/Makefile
new file mode 100644
index 0000000..b6cc756
--- /dev/null
+++ b/plugins/dfxvideo/Makefile
@@ -0,0 +1,20 @@
+CFLAGS += -Wall -ggdb -O2
+CFLAGS += -fno-strict-aliasing -ffast-math
+# ugh
+CFLAGS += -I../../libpcsxcore
+
+include ../../config.mak
+
+SRC_STANDALONE += gpu.c
+SRC_GPULIB += gpulib_if.c
+
+ifeq "$(ARCH)" "arm"
+SRC_STANDALONE += draw_fb.c
+else
+SRC_STANDALONE += draw.c
+LDLIBS_STANDALONE += -lX11 -lXv
+endif
+
+BIN_STANDLALONE = gpuPEOPS.so
+BIN_GPULIB = gpu_peops.so
+include ../gpulib/gpulib.mak