summaryrefslogtreecommitdiffstats
path: root/common/path_utils/Makefile.am
blob: 3961a06d19662e56315a65dd28ef6b3850dbaedc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
AM_CFLAGS =
if HAVE_GCC
    AM_CFLAGS += \
        -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual \
        -Wcast-align -Wwrite-strings
endif

ACLOCAL_AMFLAGS = -I m4

pkgconfigdir = $(libdir)/pkgconfig
dist_noinst_DATA = path_utils.pc

noinst_LTLIBRARIES = libpath_utils.la
libpath_utils_la_SOURCES = \
    path_utils.c \
    path_utils.h

tests: all $(check_PROGRAMS)