d1a0d267b7
Local changes incorporated by 0.4.5: r284340 Local changes retained: r276260, r282117 Obtained from: https://github.com/Juniper/libxo
22 lines
571 B
Makefile
22 lines
571 B
Makefile
#
|
|
# 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.
|
|
|
|
man_MANS = xolint.1
|
|
|
|
EXTRA_DIST = xolint.1 xolint.pl
|
|
|
|
install-exec-hook:
|
|
install ${srcdir}/xolint.pl ${DESTDIR}${bindir}/xolint
|
|
|
|
uninstall-hook:
|
|
rm -f ${DESTDIR}${bindir}/xolint
|
|
|
|
install-data-hook:
|
|
for file in ${man_MANS}; do \
|
|
cat ../libxo/add.man >> ${DESTDIR}${man1dir}/$$file ; done
|