2005-10-17 18:52:43 +00:00
|
|
|
AUTOMAKE_OPTIONS = gnu
|
2006-06-28 05:37:15 +00:00
|
|
|
|
2007-02-22 04:36:02 +00:00
|
|
|
SUBDIRS = po
|
2005-10-17 18:52:43 +00:00
|
|
|
|
|
|
|
lib_LTLIBRARIES = libalpm.la
|
2007-01-19 09:28:44 +00:00
|
|
|
include_HEADERS = alpm_list.h alpm.h
|
2005-10-20 18:57:33 +00:00
|
|
|
|
2007-06-04 10:37:00 -04:00
|
|
|
DEFS = -DLOCALEDIR=\"@localedir@\" @DEFS@
|
2007-02-22 04:36:02 +00:00
|
|
|
|
2007-10-31 22:19:03 -05:00
|
|
|
AM_CFLAGS = -pedantic -D_GNU_SOURCE
|
|
|
|
|
|
|
|
if ENABLE_VISIBILITY_CC
|
2008-04-15 15:57:36 -05:00
|
|
|
if DARWIN
|
|
|
|
AM_CFLAGS += -fvisibility=hidden
|
|
|
|
else
|
2007-10-31 22:19:03 -05:00
|
|
|
AM_CFLAGS += -fvisibility=internal
|
|
|
|
endif
|
2008-04-15 15:57:36 -05:00
|
|
|
endif
|
2007-10-31 22:19:03 -05:00
|
|
|
if ENABLE_GNU89_INLINE_CC
|
|
|
|
AM_CFLAGS += -fgnu89-inline
|
|
|
|
endif
|
2007-02-22 04:36:02 +00:00
|
|
|
|
|
|
|
libalpm_la_SOURCES = \
|
|
|
|
add.h add.c \
|
|
|
|
alpm.h alpm.c \
|
|
|
|
alpm_list.h alpm_list.c \
|
|
|
|
backup.h backup.c \
|
2010-10-13 18:04:07 +10:00
|
|
|
be_local.c \
|
2008-01-21 21:23:54 -06:00
|
|
|
be_package.c \
|
2010-10-13 18:04:07 +10:00
|
|
|
be_sync.c \
|
2007-02-22 04:36:02 +00:00
|
|
|
conflict.h conflict.c \
|
|
|
|
db.h db.c \
|
2007-10-19 13:17:51 -04:00
|
|
|
delta.h delta.c \
|
2007-02-22 04:36:02 +00:00
|
|
|
deps.h deps.c \
|
2010-11-16 15:57:39 +10:00
|
|
|
diskspace.h diskspace.c \
|
2008-01-22 21:36:11 -06:00
|
|
|
dload.h dload.c \
|
2008-04-06 20:20:20 -05:00
|
|
|
error.c \
|
2011-04-11 16:45:43 -05:00
|
|
|
graph.h graph.c \
|
2007-02-22 04:36:02 +00:00
|
|
|
group.h group.c \
|
|
|
|
handle.h handle.c \
|
|
|
|
log.h log.c \
|
|
|
|
package.h package.c \
|
2011-01-07 00:32:17 +10:00
|
|
|
pkghash.h pkghash.c \
|
2007-02-22 04:36:02 +00:00
|
|
|
remove.h remove.c \
|
2008-12-07 11:58:24 -06:00
|
|
|
signing.c signing.h \
|
2007-02-22 04:36:02 +00:00
|
|
|
sync.h sync.c \
|
|
|
|
trans.h trans.c \
|
2010-04-05 14:56:32 -05:00
|
|
|
util.h util.c \
|
|
|
|
version.c
|
2005-10-17 18:52:43 +00:00
|
|
|
|
2010-09-02 12:05:23 -05:00
|
|
|
if !HAVE_LIBSSL
|
|
|
|
libalpm_la_SOURCES += \
|
|
|
|
md5.h md5.c
|
|
|
|
endif
|
|
|
|
|
2011-04-24 11:40:58 -05:00
|
|
|
if HAVE_LIBGPGME
|
|
|
|
libalpm_la_SOURCES += \
|
|
|
|
base64.h base64.c
|
|
|
|
endif
|
|
|
|
|
2011-03-17 21:34:01 -04:00
|
|
|
libalpm_la_LDFLAGS = -no-undefined -version-info $(LIB_VERSION_INFO) @LIBCURL@
|
2008-04-14 21:01:30 -05:00
|
|
|
libalpm_la_LIBADD = $(LTLIBINTL)
|
2006-02-17 20:48:45 +00:00
|
|
|
|
2007-06-04 22:49:09 +01:00
|
|
|
# vim:set ts=2 sw=2 noet:
|