summaryrefslogtreecommitdiff
path: root/libpeas
diff options
context:
space:
mode:
authorChristian Hergert <chergert@redhat.com>2019-08-05 15:10:41 -0700
committerChristian Hergert <chergert@redhat.com>2019-08-05 16:28:59 -0700
commiteadd10dbdd5b9b6b0488aeb41d4bf1592ba9d5d2 (patch)
treeffa022cbdd5c154afa6f15541f9525fe07ec43e3 /libpeas
parent98fb732d2989ba2176d4aa719d8081642e23c984 (diff)
downloadlibpeas-eadd10dbdd5b9b6b0488aeb41d4bf1592ba9d5d2.tar.gz
build: remove autotools
Diffstat (limited to 'libpeas')
-rw-r--r--libpeas/Makefile.am119
1 files changed, 0 insertions, 119 deletions
diff --git a/libpeas/Makefile.am b/libpeas/Makefile.am
deleted file mode 100644
index 660ddff..0000000
--- a/libpeas/Makefile.am
+++ /dev/null
@@ -1,119 +0,0 @@
-lib_LTLIBRARIES = libpeas-1.0.la
-
-AM_CPPFLAGS = \
- -I$(top_srcdir) \
- -I$(srcdir) \
- $(PEAS_CFLAGS) \
- $(IGE_MAC_CFLAGS) \
- $(GCOV_CFLAGS) \
- $(WARN_CFLAGS) \
- $(DISABLE_DEPRECATED) \
- -DDATADIR=\""$(datadir)"\" \
- -DLIBDIR=\""$(libdir)"\"
-
-libpeas_1_0_la_LDFLAGS = \
- $(GCOV_LDFLAGS) \
- -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
- -export-dynamic -no-undefined -export-symbols-regex "^[^_].*"
-
-if OS_OSX
-AM_CPPFLAGS += -xobjective-c
-libpeas_1_0_la_LDFLAGS += -framework Cocoa
-endif
-
-libpeas_1_0_la_LIBADD = $(PEAS_LIBS)
-
-INST_H_FILES = \
- peas-autocleanups.h \
- peas-plugin-info.h \
- peas-object-module.h \
- peas-extension-base.h \
- peas-extension.h \
- peas-extension-set.h \
- peas-activatable.h \
- peas-engine.h \
- peas.h
-
-NOINST_H_FILES = \
- peas-debug.h \
- peas-dirs.h \
- peas-engine-priv.h \
- peas-i18n.h \
- peas-introspection.h \
- peas-plugin-info-priv.h \
- peas-plugin-loader.h \
- peas-plugin-loader-c.h \
- peas-utils.h
-
-C_FILES = \
- peas-activatable.c \
- peas-debug.c \
- peas-dirs.c \
- peas-engine.c \
- peas-extension.c \
- peas-extension-base.c \
- peas-extension-set.c \
- peas-i18n.c \
- peas-introspection.c \
- peas-object-module.c \
- peas-plugin-info.c \
- peas-plugin-loader.c \
- peas-plugin-loader-c.c \
- peas-utils.c
-
-BUILT_SOURCES = \
- peas-marshal.c \
- peas-marshal.h
-
-libpeas_1_0_la_SOURCES = \
- $(INST_H_FILES) \
- $(NOINST_H_FILES) \
- $(BUILT_SOURCES) \
- $(C_FILES)
-
-headerdir = $(prefix)/include/libpeas-1.0/libpeas
-header_DATA = $(INST_H_FILES)
-
-peas-marshal.c: peas-marshal.list $(GLIB_GENMARSHAL)
- $(AM_V_GEN) (echo "#include \"peas-marshal.h\"" && $(GLIB_GENMARSHAL) $< --body --prefix=peas_cclosure_marshal) > $@
-
-peas-marshal.h: peas-marshal.list $(GLIB_GENMARSHAL)
- $(AM_V_GEN) $(GLIB_GENMARSHAL) $< --header --prefix=peas_cclosure_marshal > $@
-
-EXTRA_DIST = peas-marshal.list
-
-CLEANFILES = $(BUILT_SOURCES)
-
-dist-hook:
- cd $(distdir); rm -f $(BUILT_SOURCES)
-
-if HAVE_INTROSPECTION
- -include $(INTROSPECTION_MAKEFILE)
- INTROSPECTION_GIRS = Peas-1.0.gir
- INTROSPECTION_SCANNER_ARGS = \
- -I$(top_srcdir) \
- --c-include=libpeas/peas.h \
- --warn-all
-
- introspection_sources = $(INST_H_FILES) $(C_FILES)
-
- Peas-1.0.gir: libpeas-1.0.la
- Peas_1_0_gir_INCLUDES = GObject-2.0 GModule-2.0 Gio-2.0 GIRepository-2.0
- Peas_1_0_gir_CFLAGS = $(PEAS_CFLAGS)
- Peas_1_0_gir_LIBS = libpeas-1.0.la
- Peas_1_0_gir_FILES = $(addprefix $(srcdir)/,$(introspection_sources))
- Peas_1_0_gir_EXPORT_PACKAGES = libpeas-1.0
-
- girdir = $(datadir)/gir-1.0
- gir_DATA = $(INTROSPECTION_GIRS)
-
- typelibdir = $(libdir)/girepository-1.0
- typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib)
-
- CLEANFILES += \
- $(gir_DATA) \
- $(typelib_DATA)
-endif
-
-gcov_sources = $(C_FILES)
-include $(top_srcdir)/Makefile.gcov