summaryrefslogtreecommitdiff
path: root/lib/libalpm/Makefile.am
blob: c935e2db9b0c6039dd303751244edab5dbf9c7f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
AUTOMAKE_OPTIONS = gnu

SUBDIRS = po

lib_LTLIBRARIES = libalpm.la
include_HEADERS = alpm_list.h alpm.h

AM_CPPFLAGS \
  -imacros $(top_builddir)/config.h \
  -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
if ENABLE_GNU89_INLINE_CC
AM_CFLAGS += -fgnu89-inline
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 \
  be_local.c \
  be_package.c \
  be_sync.c \
  conflict.h conflict.c \
  db.h db.c \
  delta.h delta.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 \
  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 \
  version.c

if !HAVE_LIBSSL
libalpm_la_SOURCES += \
  md5.h md5.c \
  sha2.h sha2.c
endif

if HAVE_LIBGPGME
libalpm_la_SOURCES += \
  base64.h base64.c
endif

libalpm_la_LDFLAGS = -no-undefined -version-info $(LIB_VERSION_INFO)

libalpm_la_CFLAGS \
  $(AM_CFLAGS) \
  $(GPGME_CFLAGS) \
  $(LIBARCHIVE_CFLAGS) \
  $(LIBCURL_CFLAGS) \
  $(LIBSSL_CFLAGS)

libalpm_la_LIBADD \
  $(LTLIBINTL) \
  $(GPGME_LIBS) \
  $(LIBARCHIVE_LIBS) \
  $(LIBCURL_LIBS) \
  $(LIBSSL_LIBS)

# vim:set ts=2 sw=2 noet: