summaryrefslogtreecommitdiff
path: root/plugins/peopsxgl
diff options
context:
space:
mode:
authorStelios Tsampas <loathingkernel@gmail.com>2018-01-12 11:58:52 +0200
committerStelios Tsampas <loathingkernel@gmail.com>2018-01-12 21:52:44 +0200
commit128d6afb179756513860187cf5e31d84d6d8cac4 (patch)
treeaa6dacdfc3fac1b8784520de0eac5590c8f970da /plugins/peopsxgl
parent1ba9d54f15fcea87055deef31abe0151b4f49467 (diff)
downloadpcsxr-128d6afb179756513860187cf5e31d84d6d8cac4.tar.gz
* Remove autotools build system.
Diffstat (limited to 'plugins/peopsxgl')
-rwxr-xr-xplugins/peopsxgl/Makefile.am60
1 files changed, 0 insertions, 60 deletions
diff --git a/plugins/peopsxgl/Makefile.am b/plugins/peopsxgl/Makefile.am
deleted file mode 100755
index e72e8dd5..00000000
--- a/plugins/peopsxgl/Makefile.am
+++ /dev/null
@@ -1,60 +0,0 @@
-AM_CPPFLAGS = -DPIXMAPDIR=\"${datadir}/pixmaps/\" \
- -DLOCALE_DIR=\"${datadir}/locale/\" \
- -DDATADIR=\"${datadir}/psemu/\" \
- $(GTK3_CFLAGS) \
- -I$(top_srcdir)/libpcsxcore -I../../include
-
-bindir = @libdir@/games/psemu/
-libdir = @libdir@/games/psemu/
-
-lib_LTLIBRARIES = libpeopsxgl.la
-
-libpeopsxgl_la_SOURCES = \
- cfg.c cfg.h \
- draw.c draw.h \
- fps.c fps.h \
- gl_ext.h \
- gpu.c gpu.h \
- key.c key.h \
- menu.c menu.h \
- prim.c prim.h \
- soft.c soft.h \
- texture.c texture.h \
- gte_accuracy.c gte_accuracy.h \
- pgxp_gpu.c pgxp_gpu.h
-libpeopsxgl_la_LDFLAGS = -module -avoid-version
-libpeopsxgl_la_LIBADD = -lX11 -lXxf86vm -lGL -lm
-
-bin_PROGRAMS = cfgpeopsxgl
-cfgpeopsxgl_SOURCES = gpucfg/main.c GtkResources.c GtkResources.h
-cfgpeopsxgl_LDADD = $(GTK3_LIBS)
-
-# gresource.xml is dynamically generated in CMake. Mirror that here in a static way.
-#define gresource_xml =
-define gresource_xml
-<?xml version="1.0" encoding="UTF-8"?>
-<gresources>
- <gresource prefix="/org/pcsxr/peopsxgl">
- <file>peopsxgl.ui</file>
- </gresource>
-</gresources>
-endef
-# FIXME
-export gresource_xml
-
-peopsxgl.gresource.xml:
-# $(file >$@,$(gresource_xml))
- @echo "$$gresource_xml" >$@
-peopsxgl_gresource: peopsxgl.gresource.xml
- $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir)/gpucfg --generate-dependencies $(srcdir)/$<)
-GtkResources.c: peopsxgl.gresource.xml $(peopsxgl_gresource)
- $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir)/gpucfg --generate-source --c-name peopsxgl $<
-GtkResources.h: peopsxgl.gresource.xml $(peopsxgl_gresource)
- $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir)/gpucfg --generate-header --c-name peopsxgl $<
-
-
-#glade_DATA = gpucfg/peopsxgl.ui
-#gladedir = $(datadir)/psemu/
-EXTRA_DIST = $(glade_DATA)
-
-CLEANFILES = peopsxgl.gresource.xml GtkResources.c GtkResources.h