diff options
author | monsta <[email protected]> | 2016-12-13 11:27:19 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-12-13 11:27:19 +0300 |
commit | b4ddcc1d1f7635d19db4b015a54b45dca63e2c88 (patch) | |
tree | 97697bcc3131c21603cfda03a65fa3d22ef7b801 /python/Makefile.am | |
parent | bfa1740cce3269373d055b5fb9f5f6867d63d0cb (diff) | |
download | libmateweather-b4ddcc1d1f7635d19db4b015a54b45dca63e2c88.tar.bz2 libmateweather-b4ddcc1d1f7635d19db4b015a54b45dca63e2c88.tar.xz |
drop Python bindings and --enable-python build option
it requires PyGTK so won't even build with GTK+3
Diffstat (limited to 'python/Makefile.am')
-rw-r--r-- | python/Makefile.am | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/python/Makefile.am b/python/Makefile.am deleted file mode 100644 index e31af06..0000000 --- a/python/Makefile.am +++ /dev/null @@ -1,37 +0,0 @@ -if BUILD_PYTHON -AM_CPPFLAGS = \ - -I$(top_srcdir) \ - $(PYTHON_INCLUDES) \ - $(PYGOBJECT_CFLAGS) \ - $(GTK_CFLAGS) - -pyunstabledir = $(pyexecdir)/mateweather/I_KNOW_THIS_IS_UNSTABLE -pyunstable_LTLIBRARIES = mateweather.la -mateweather_la_LDFLAGS = -module -avoid-version -export-symbols-regex initmateweather -mateweather_la_LIBADD = ../libmateweather/libmateweather.la -mateweather_la_SOURCES = mateweathermodule.c -nodist_mateweather_la_SOURCES = mateweather.c -mateweather.c: mateweather.defs mateweather.override - -.defs.c: - $(AM_V_GEN)(cd $(srcdir)\ - && pygobject-codegen-2.0 \ - --register $(PYGTK_DEFS) \ - --override $*.override \ - --prefix py$* $*.defs) > gen-$*.c \ - && cp gen-$*.c $*.c \ - && rm -f gen-$*.c - -install-exec-hook: - $(MKDIR_P) "$(DESTDIR)$(pyunstabledir)" - $(INSTALL_DATA) $(srcdir)/bad__init__.py "$(DESTDIR)$(pyexecdir)/mateweather/__init__.py" - touch $(DESTDIR)$(pyunstabledir)/__init__.py - chmod a+x $(DESTDIR)$(pyunstabledir)/__init__.py - -endif - -EXTRA_DIST = mateweather.defs mateweather.override bad__init__.py demo.py - -CLEANFILES = mateweather.c - --include $(top_srcdir)/git.mk |