]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/libucl/utils/Makefile.am
MFC r264400,r265836:
[FreeBSD/stable/10.git] / contrib / libucl / utils / Makefile.am
1 common_utils_cflags = -I$(top_srcdir)/include \
2                                         -I$(top_srcdir)/src \
3                                         -I$(top_srcdir)/uthash
4 common_utils_ldadd = $(top_builddir)/src/libucl.la
5
6 ucl_chargen_SOURCES = chargen.c
7 ucl_chargen_LDADD = $(common_utils_ldadd)
8 ucl_chargen_CFLAGS = $(common_utils_cflags)
9
10 ucl_objdump_SOURCES = objdump.c
11 ucl_objdump_LDADD = $(common_utils_ldadd)
12 ucl_objdump_CFLAGS = $(common_utils_cflags)
13
14 if UTILS
15 UTL = ucl_chargen ucl_objdump
16 else
17 UTL =
18 endif
19 bin_PROGRAMS = $(UTL)