mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-04 16:45:07 -05:00
5b2de3d8ec
The file be_files.c is "split" to be_local.c and be_sync.c in order to achieve separate handling of sync and local databases. Some basic clean-up of functions that are only of use for local or sync databases has been performed and some rough function renaming in duplicated code has been performed to prevent compilation errors. However, most of the clean-up and final separation of sync and local db handling occurs in following patches. Signed-off-by: Allan McRae <allan@archlinux.org>
57 lines
979 B
Makefile
57 lines
979 B
Makefile
AUTOMAKE_OPTIONS = gnu
|
|
|
|
SUBDIRS = po
|
|
|
|
lib_LTLIBRARIES = libalpm.la
|
|
include_HEADERS = alpm_list.h alpm.h
|
|
|
|
DEFS = -DLOCALEDIR=\"@localedir@\" @DEFS@
|
|
|
|
AM_CFLAGS = -pedantic -D_GNU_SOURCE
|
|
|
|
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
|
|
|
|
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 \
|
|
dload.h dload.c \
|
|
error.c \
|
|
graph.h \
|
|
group.h group.c \
|
|
handle.h handle.c \
|
|
log.h log.c \
|
|
package.h package.c \
|
|
remove.h remove.c \
|
|
sync.h sync.c \
|
|
trans.h trans.c \
|
|
util.h util.c \
|
|
version.c
|
|
|
|
if !HAVE_LIBSSL
|
|
libalpm_la_SOURCES += \
|
|
md5.h md5.c
|
|
endif
|
|
|
|
libalpm_la_LDFLAGS = -no-undefined -version-info $(LIB_VERSION_INFO)
|
|
libalpm_la_LIBADD = $(LTLIBINTL)
|
|
|
|
# vim:set ts=2 sw=2 noet:
|