]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/libucl/utils/Makefile.am
bc: Vendor import new version 3.3.3
[FreeBSD/FreeBSD.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 ucl_tool_SOURCES = ucl-tool.c
15 ucl_tool_LDADD = $(common_utils_ldadd)
16 ucl_tool_CFLAGS = $(common_utils_cflags)
17
18 if UTILS
19 UTL = ucl_chargen ucl_objdump ucl_tool
20 else
21 UTL =
22 endif
23 bin_PROGRAMS = $(UTL)