blob: 247ef3b081187b4c9fb18c483750b0af74d848e9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#
# Copyright 2014, Juniper Networks, Inc.
# All rights reserved.
# This SOFTWARE is licensed under the LICENSE provided in the
# ../Copyright file. By downloading, installing, copying, or otherwise
# using the SOFTWARE, you agree to be bound by the terms of that
# LICENSE.
if LIBXO_WARNINGS_HIGH
LIBXO_WARNINGS = HIGH
endif
include ${top_srcdir}/warnings.mk
AM_CFLAGS = \
-DLIBXO_XMLSOFT_NEED_PRIVATE \
-I${top_builddir} \
-I${top_srcdir} \
-I${top_srcdir}/libxo \
${WARNINGS}
LIBS = \
${LIBXO_LIBS}
bin_PROGRAMS = xo
xo_SOURCES = xo.c
#xo_LDADD = ../libxo/libxo.la
#xo_LDFLAGS = -static
LDADD = \
${top_builddir}/libxo/libxo.la
man_MANS = xo.1
EXTRA_DIST = xo.1
|