summaryrefslogtreecommitdiff
path: root/plugins/dfinput
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/dfinput
parent1ba9d54f15fcea87055deef31abe0151b4f49467 (diff)
downloadpcsxr-128d6afb179756513860187cf5e31d84d6d8cac4.tar.gz
* Remove autotools build system.
Diffstat (limited to 'plugins/dfinput')
-rw-r--r--plugins/dfinput/Makefile.am47
1 files changed, 0 insertions, 47 deletions
diff --git a/plugins/dfinput/Makefile.am b/plugins/dfinput/Makefile.am
deleted file mode 100644
index 60a57488..00000000
--- a/plugins/dfinput/Makefile.am
+++ /dev/null
@@ -1,47 +0,0 @@
-bindir = @libdir@/games/psemu/
-libdir = @libdir@/games/psemu/
-
-lib_LTLIBRARIES = libDFInput.la
-
-libDFInput_la_SOURCES = cfg.c pad.c pad.h sdljoy.c xkb.c analog.c util.c util.h
-libDFInput_la_LDFLAGS = -module -avoid-version
-libDFInput_la_LIBADD = -lpthread -lX11 $(SDL2_LIBS) $(SDL_LIBS)
-
-AM_CPPFLAGS = -DLOCALE_DIR=\"${datadir}/locale/\" \
- -DDATADIR=\"${datadir}/psemu/\" \
- $(GTK3_CFLAGS) \
- -I../../include -I$(top_srcdir)/libpcsxcore $(SDL2_CFLAGS) $(SDL_CFLAGS)
-
-bin_PROGRAMS = cfgDFInput
-cfgDFInput_SOURCES = cfg-gtk.c pad.h GtkResources.c GtkResources.h
-cfgDFInput_LDADD = $(GTK3_LIBS) $(SDL2_LIBS) $(SDL_LIBS) -lX11
-
-# 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/dfinput">
- <file>dfinput.ui</file>
- </gresource>
-</gresources>
-endef
-# FIXME
-export gresource_xml
-
-dfinput.gresource.xml:
-# $(file >$@,$(gresource_xml))
- @echo "$$gresource_xml" >$@
-dfinput_gresource: dfinput.gresource.xml
- $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir) --generate-dependencies $(srcdir)/$<)
-GtkResources.c: dfinput.gresource.xml $(dfinput_gresource)
- $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate-source --c-name dfinput $<
-GtkResources.h: dfinput.gresource.xml $(dfinput_gresource)
- $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(srcdir) --generate-header --c-name dfinput $<
-
-
-#glade_DATA = dfinput.ui
-#gladedir = $(datadir)/psemu/
-EXTRA_DIST = $(glade_DATA)
-
-CLEANFILES = dfinput.gresource.xml GtkResources.c GtkResources.h