pacman: list all unknown targets on removal operation
[pacman-ng.git] / lib / libalpm / Makefile.am
blob99f9c1b7fe8ae20cbcbc5867619c94adac6a36bf
1 AUTOMAKE_OPTIONS = gnu
3 SUBDIRS = po
5 lib_LTLIBRARIES = libalpm.la
6 include_HEADERS = alpm_list.h alpm.h
8 DEFS = -DLOCALEDIR=\"@localedir@\" @DEFS@
10 AM_CFLAGS = -pedantic -D_GNU_SOURCE
12 if ENABLE_VISIBILITY_CC
13 if DARWIN
14 AM_CFLAGS += -fvisibility=hidden
15 else
16 AM_CFLAGS += -fvisibility=internal
17 endif
18 endif
19 if ENABLE_GNU89_INLINE_CC
20 AM_CFLAGS += -fgnu89-inline
21 endif
23 libalpm_la_SOURCES = \
24         add.h add.c \
25         alpm.h alpm.c \
26         alpm_list.h alpm_list.c \
27         backup.h backup.c \
28         be_local.c \
29         be_package.c \
30         be_sync.c \
31         conflict.h conflict.c \
32         db.h db.c \
33         delta.h delta.c \
34         deps.h deps.c \
35         diskspace.h diskspace.c \
36         dload.h dload.c \
37         error.c \
38         graph.h graph.c \
39         group.h group.c \
40         handle.h handle.c \
41         log.h log.c \
42         package.h package.c \
43         pkghash.h pkghash.c \
44         rawstr.c \
45         remove.h remove.c \
46         signing.c signing.h \
47         sync.h sync.c \
48         trans.h trans.c \
49         util.h util.c \
50         version.c
52 if !HAVE_LIBSSL
53 libalpm_la_SOURCES += \
54         md5.h md5.c \
55         sha2.h sha2.c
56 endif
58 if HAVE_LIBGPGME
59 libalpm_la_SOURCES += \
60         base64.h base64.c
61 endif
63 libalpm_la_LDFLAGS = -no-undefined -version-info $(LIB_VERSION_INFO) @LIBCURL@
64 libalpm_la_LIBADD = $(LTLIBINTL)
66 # vim:set ts=2 sw=2 noet: