From 4132e8ca13b6395f8a9ef7ec7d01cbdcc19c037d Mon Sep 17 00:00:00 2001 From: notaz Date: Fri, 20 Apr 2012 02:28:55 +0300 Subject: bring in configure build system not using autotools, trying to do something similar like qemu instead. --- plugins/dfxvideo/Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 plugins/dfxvideo/Makefile (limited to 'plugins/dfxvideo/Makefile') 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 -- cgit v1.2.3