summaryrefslogtreecommitdiffstats
path: root/common/Makefile.am
blob: 47d7c4a99a3bacde6e63b01ff151e46af1da0181 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
ACLOCAL_AMFLAGS = -I m4

if SINGLELIB
# Build all components as a single shared library
lib_LTLIBRARIES = libsssd_util.la
libsssd_util_la_SOURCES = \
    collection/collection.c \
    collection/collection_tools.c \
    ini/ini_config.c \
    dhash/dhash.c
libsssd_util_la_CFLAGS = $(AM_CFLAGS) \
    -I ./collection \
    -I ./ini \
    -I ./dhash \
    -I ./trace
else
SUBDIRS = collection ini trace dhash
endif