Makefile.am revision 273562
1#
2# Copyright 2014, Juniper Networks, Inc.
3# All rights reserved.
4# This SOFTWARE is licensed under the LICENSE provided in the
5# ../Copyright file. By downloading, installing, copying, or otherwise
6# using the SOFTWARE, you agree to be bound by the terms of that
7# LICENSE.
8
9if LIBXO_WARNINGS_HIGH
10LIBXO_WARNINGS = HIGH
11endif
12if HAVE_GCC
13GCC_WARNINGS = yes
14endif
15include ${top_srcdir}/warnings.mk
16
17libxoincdir = ${includedir}/libxo
18
19AM_CFLAGS = -I${top_srcdir} ${WARNINGS}
20
21lib_LTLIBRARIES = libxo.la
22
23libxoinc_HEADERS = \
24     xo.h
25
26libxo_la_SOURCES = \
27    libxo.c
28
29man_MANS = \
30    libxo.3 \
31    xo_attr.3 \
32    xo_create.3 \
33    xo_emit.3 \
34    xo_err.3 \
35    xo_finish.3 \
36    xo_flush.3 \
37    xo_format.5 \
38    xo_no_setlocale.3 \
39    xo_open_container.3 \
40    xo_open_list.3 \
41    xo_parse_args.3 \
42    xo_set_allocator.3 \
43    xo_set_flags.3 \
44    xo_set_info.3 \
45    xo_set_options.3 \
46    xo_set_style.3 \
47    xo_set_writer.3
48
49EXTRA_DIST =
50