summaryrefslogtreecommitdiff
path: root/src/pacman/Makefile.am
blob: 311f7c5b9d232798712899be23187cb31fce90b6 (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
SUBDIRS = po

# paths set at make time
conffile  ${sysconfdir}/pacman.conf
dbpath    ${localstatedir}/lib/pacman/
gpgdir    ${sysconfdir}/pacman.d/gnupg/
cachedir  ${localstatedir}/cache/pacman/pkg/
logfile   ${localstatedir}/log/pacman.log

bin_PROGRAMS = pacman

AM_CPPFLAGS \
  -imacros $(top_builddir)/config.h \
  -I$(top_srcdir)/lib/libalpm \
  -DLOCALEDIR=\"@localedir@\" \
  -DCONFFILE=\"$(conffile)\" \
  -DDBPATH=\"$(dbpath)\" \
  -DGPGDIR=\"$(gpgdir)\" \
  -DCACHEDIR=\"$(cachedir)\" \
  -DLOGFILE=\"$(logfile)\"

AM_CFLAGS = -pedantic -D_GNU_SOURCE $(WARNING_CFLAGS)

if USE_GIT_VERSION
GIT_VERSION := $(shell sh -c 'git describe --abbrev=4 --dirty | sed s/^v//')
AM_CPPFLAGS += -DGIT_VERSION=\"$(GIT_VERSION)\"
endif

pacman_SOURCES \
  check.h check.c \
  conf.h conf.c \
  database.c \
  deptest.c \
  package.h package.c \
  pacman.h pacman.c \
  query.c \
  remove.c \
  sync.c \
  callback.h callback.c \
  upgrade.c \
  util.h util.c

LDADD $(LTLIBINTL) $(top_builddir)/lib/libalpm/.libs/libalpm.la

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