X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=pcsx_rearmed.git;a=blobdiff_plain;f=plugins%2Fdfxvideo%2FMakefile;fp=plugins%2Fdfxvideo%2FMakefile;h=b6cc756d968013061fba8a2e2be022c52a792560;hp=0000000000000000000000000000000000000000;hb=4132e8ca13b6395f8a9ef7ec7d01cbdcc19c037d;hpb=4a35de071887026bb6dcd6b852738a1866959df7 diff --git a/plugins/dfxvideo/Makefile b/plugins/dfxvideo/Makefile new file mode 100644 index 00000000..b6cc756d --- /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