diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2019-10-14 19:08:47 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2019-10-14 19:08:47 +0100 |
commit | acb2da66f5d8e58b52f9a61b2cd8679a88e79c45 (patch) | |
tree | a371a64538617092c0129eb8beadf0e1ceaf8d05 /gi | |
parent | c04bb945b0b95e0f8686f3b9994a3327ccf74863 (diff) |
Remove autotools build
Diffstat (limited to 'gi')
-rw-r--r-- | gi/Makefile.am | 4 | ||||
-rw-r--r-- | gi/overrides/Makefile.am | 40 |
2 files changed, 0 insertions, 44 deletions
diff --git a/gi/Makefile.am b/gi/Makefile.am deleted file mode 100644 index d91fac6..0000000 --- a/gi/Makefile.am +++ /dev/null @@ -1,4 +0,0 @@ -SUBDIRS = overrides - -EXTRA_DIST = \ - meson.build diff --git a/gi/overrides/Makefile.am b/gi/overrides/Makefile.am deleted file mode 100644 index b53df8e..0000000 --- a/gi/overrides/Makefile.am +++ /dev/null @@ -1,40 +0,0 @@ -common_cflags = $(PYGOBJECT_CFLAGS) $(GST_CFLAGS) -fno-strict-aliasing -common_libadd = $(GST_LIBS) $(PYGOBJECT_LIBS) -common_ldflags = -module -avoid-version -shrext $(PYTHON_SO) - -# We install everything in the gi/overrides folder -pygioverridesdir = $(PYGI_OVERRIDES_DIR) -pygioverrides_PYTHON = Gst.py GstPbutils.py - -pygioverridesexecdir = $(PYGI_OVERRIDES_DIR) - -EXTRA_DIST = \ - meson.build \ - Gst.py \ - GstPbutils.py - -AM_CPPFLAGS = $(PYTHON_INCLUDES) - -pygioverridesexec_LTLIBRARIES = _gi_gst.la - -_gi_gst_la_SOURCES = gstmodule.c -_gi_gst_la_CFLAGS = $(common_cflags) -_gi_gst_la_LIBADD = $(common_libadd) -_gi_gst_la_LDFLAGS = $(common_ldflags) - -# if we build in a separate tree, we need to symlink the *.so files from the -# source tree; Python does not accept the extensions and modules in different -# paths -build_pylinks: - for f in $(pygioverrides_PYTHON); do \ - [ -e $(builddir)/$$f ] || $(LN_S) -f $(srcdir)/$$f $(builddir)/$$f; \ - done - -all: $(pygioverridesexec_LTLIBRARIES:.la=$(PYTHON_SO)) build_pylinks -check-local: $(pygioverridesexec_LTLIBRARIES:.la=$(PYTHON_SO)) build_pylinks -clean-local: - rm -f $(pygioverridesexec_LTLIBRARIES:.la=$(PYTHON_SO)) - -%$(PYTHON_SO): %.la - $(LN_S) -f .libs/$@ $@ - |