summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2020-05-11 04:59:51 +0200
committerAllan McRae <allan@archlinux.org>2020-06-01 02:59:08 +0200
commit454ea024383eab60295e4c4fdf2c329475887b2c (patch)
tree5f3397782b3bb7e061770a63da5b7e34877f8193 /lib
parent8ce142a2552418f64a74e773f659d92b065d6209 (diff)
downloadpacman-454ea024383eab60295e4c4fdf2c329475887b2c.tar.gz
pacman-454ea024383eab60295e4c4fdf2c329475887b2c.tar.xz
Remove autotools support
This removes support for autotools in favour of meson.
Diffstat (limited to 'lib')
-rw-r--r--lib/libalpm/Makefile.am78
1 files changed, 0 insertions, 78 deletions
diff --git a/lib/libalpm/Makefile.am b/lib/libalpm/Makefile.am
deleted file mode 100644
index e4f83223..00000000
--- a/lib/libalpm/Makefile.am
+++ /dev/null
@@ -1,78 +0,0 @@
-AUTOMAKE_OPTIONS = gnu
-
-SUBDIRS = po
-
-EXTRA_DIST = meson.build po/meson.build
-
-lib_LTLIBRARIES = libalpm.la
-include_HEADERS = alpm_list.h alpm.h
-
-AM_CPPFLAGS = \
- -imacros $(top_builddir)/config.h \
- -DSYSHOOKDIR=\"@datarootdir@/libalpm/hooks/\" \
- -DLOCALEDIR=\"@localedir@\"
-
-AM_CFLAGS = -pedantic -D_GNU_SOURCE $(WARNING_CFLAGS)
-
-if ENABLE_VISIBILITY_CC
-if DARWIN
-AM_CFLAGS += -fvisibility=hidden
-else
-AM_CFLAGS += -fvisibility=internal
-endif
-endif
-
-pkgconfigdir = $(libdir)/pkgconfig
-pkgconfig_DATA = libalpm.pc
-
-libalpm_la_SOURCES = \
- add.h add.c \
- alpm.h alpm.c \
- alpm_list.h alpm_list.c \
- backup.h backup.c \
- base64.h base64.c \
- be_local.c \
- be_package.c \
- be_sync.c \
- conflict.h conflict.c \
- db.h db.c \
- deps.h deps.c \
- diskspace.h diskspace.c \
- dload.h dload.c \
- error.c \
- filelist.h filelist.c \
- graph.h graph.c \
- group.h group.c \
- handle.h handle.c \
- hook.h hook.c \
- ini.h ini.c \
- libarchive-compat.h \
- log.h log.c \
- package.h package.c \
- pkghash.h pkghash.c \
- rawstr.c \
- remove.h remove.c \
- signing.c signing.h \
- sync.h sync.c \
- trans.h trans.c \
- util.h util.c \
- util-common.h util-common.c \
- version.c
-
-libalpm_la_LDFLAGS = -no-undefined -version-info $(LIB_VERSION_INFO)
-
-libalpm_la_CFLAGS = \
- $(AM_CFLAGS) \
- $(GPGME_CFLAGS) \
- $(LIBARCHIVE_CFLAGS) \
- $(LIBCURL_CFLAGS) \
- $(LIBSSL_CFLAGS) \
- $(NETTLE_CFLAGS)
-
-libalpm_la_LIBADD = \
- $(LTLIBINTL) \
- $(GPGME_LIBS) \
- $(LIBARCHIVE_LIBS) \
- $(LIBCURL_LIBS) \
- $(LIBSSL_LIBS) \
- $(NETTLE_LIBS)