mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-04 08:35:07 -05:00
0bc06918e4
* Fix up add.c a bit better than it was in regards to FS #3492. * Optimized the sqrt call in dependency cycle checking to a single call. * Removal of an outdated comment.
50 lines
747 B
Makefile
50 lines
747 B
Makefile
AUTOMAKE_OPTIONS = gnu
|
|
DEFINES = -pedantic -D_GNU_SOURCE
|
|
AM_CFLAGS = $(DEFINES)
|
|
SUBDIRS = po
|
|
|
|
localedir = $(datadir)/locale
|
|
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
|
|
|
|
TARGETS = md5driver.c \
|
|
md5.c \
|
|
sha1.c \
|
|
util.c \
|
|
alpm_list.c \
|
|
log.c \
|
|
error.c \
|
|
package.c \
|
|
group.c \
|
|
db.c \
|
|
cache.c \
|
|
conflict.c \
|
|
deps.c \
|
|
provide.c \
|
|
versioncmp.c \
|
|
backup.c \
|
|
trans.c \
|
|
add.c \
|
|
remove.c \
|
|
sync.c \
|
|
handle.c \
|
|
server.c \
|
|
alpm.c \
|
|
be_files.c
|
|
|
|
lib_LTLIBRARIES = libalpm.la
|
|
|
|
include_HEADERS = alpm_list.h alpm.h
|
|
|
|
libalpm_la_SOURCES = $(TARGETS)
|
|
|
|
libalpm_la_LDFLAGS = -no-undefined -version-info $(PM_VERSION_INFO)
|
|
libalpm_la_LIBADD = -larchive -ldownload -lm
|
|
|
|
if HAS_DOXYGEN
|
|
all: doxygen.in
|
|
|
|
doxygen.in:
|
|
doxygen $(srcdir)/Doxyfile
|
|
|
|
endif
|