diff options
author | bapt <bapt@FreeBSD.org> | 2014-03-22 17:28:14 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-03-22 17:28:14 +0000 |
commit | b471b8e16d6f2c205ae497402bad0a60c9cd6fa8 (patch) | |
tree | aabc973b2e4479277f8fe9aa0e8ed539826fdca3 /contrib/libucl/utils | |
parent | 841158cbfbfc6b699dbc10892c6cb878a66a5d7e (diff) | |
parent | 6b4d859b54b28a9d46c317ff21676aa37241f6de (diff) | |
download | FreeBSD-src-b471b8e16d6f2c205ae497402bad0a60c9cd6fa8.zip FreeBSD-src-b471b8e16d6f2c205ae497402bad0a60c9cd6fa8.tar.gz |
Update to 20140321
This brings schema validation
MFC after: 1 week
Diffstat (limited to 'contrib/libucl/utils')
-rw-r--r-- | contrib/libucl/utils/Makefile.am | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/contrib/libucl/utils/Makefile.am b/contrib/libucl/utils/Makefile.am new file mode 100644 index 0000000..61e06a7 --- /dev/null +++ b/contrib/libucl/utils/Makefile.am @@ -0,0 +1,19 @@ +common_utils_cflags = -I$(top_srcdir)/include \ + -I$(top_srcdir)/src \ + -I$(top_srcdir)/uthash +common_utils_ldadd = $(top_builddir)/src/libucl.la + +ucl_chargen_SOURCES = chargen.c +ucl_chargen_LDADD = $(common_utils_ldadd) +ucl_chargen_CFLAGS = $(common_utils_cflags) + +ucl_objdump_SOURCES = objdump.c +ucl_objdump_LDADD = $(common_utils_ldadd) +ucl_objdump_CFLAGS = $(common_utils_cflags) + +if UTILS +UTL = ucl_chargen ucl_objdump +else +UTL = +endif +bin_PROGRAMS = $(UTL)
\ No newline at end of file |