Imported Upstream version 1.22.4
[platform/upstream/groff.git] / src / roff / nroff / nroff.am
1 # Copyright (C) 2014-2018 Free Software Foundation, Inc.
2 #
3 # Latest update: 22 Aug 2015
4 #
5 # This file is part of groff.
6 #
7 # groff is free software; you can redistribute it and/or modify it under
8 # the terms of the GNU General Public License as published by the Free
9 # Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # groff is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 # for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20 prefixexecbin_SCRIPTS += nroff
21 nroff_srcdir = $(top_srcdir)/src/roff/nroff
22 PREFIXMAN1 += src/roff/nroff/nroff.1
23 EXTRA_DIST += \
24   src/roff/nroff/nroff.1.man \
25   src/roff/nroff/nroff.sh
26
27 nroff: $(nroff_srcdir)/nroff.sh $(SH_DEPS_SED_SCRIPT)
28         $(AM_V_GEN)rm -f $@ \
29         && sed -f $(SH_DEPS_SED_SCRIPT) \
30                -e $(SH_SCRIPT_SED_CMD) \
31                -e "s|[@]VERSION[@]|$(VERSION)|" \
32                $(nroff_srcdir)/nroff.sh \
33                >$@ \
34         && chmod +x $@
35
36
37 ########################################################################
38 ### Emacs settings
39 # Local Variables:
40 # mode: makefile-automake
41 # End: