mirror of
https://https.git.savannah.gnu.org/git/groff.git
synced 2026-01-26 07:37:53 +00:00
85 lines
2.6 KiB
Makefile
85 lines
2.6 KiB
Makefile
# Copyright 1991-2020 Free Software Foundation, Inc.
|
|
#
|
|
# This file is part of groff, the GNU roff typesetting system.
|
|
#
|
|
# groff is free software; you can redistribute it and/or modify it under
|
|
# the terms of the GNU General Public License as published by the Free
|
|
# Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# groff is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
# WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
# for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
# Makefile.sim
|
|
#
|
|
# To install mm separately as gm.tmac:
|
|
# make -f Makefile.sub tmacdir=/usr/local/lib/groff/tmac srcdir=. \
|
|
# INSTALL_DATA='install -m 644' tmac_m=gm install
|
|
#
|
|
# or as m.tmac:
|
|
#
|
|
# tmacdir is the destination for your groff/tmac-directory, srcdir is
|
|
# this directory and INSTALL_DATA is the command to install a file with.
|
|
# If you dont have 'install': use 'cp'.
|
|
|
|
|
|
# change this to whatever you like
|
|
tmacdir=/usr/local/lib/groff/tmac
|
|
#tmac_m = gm
|
|
tmac_m = m
|
|
indexdir = xx
|
|
install = install -m 644
|
|
|
|
# Do not change anything below this line
|
|
srcdir = .
|
|
version = 2.8
|
|
mdate = 2002-05-11
|
|
|
|
.SUFFIXES: .n .man
|
|
|
|
all:
|
|
|
|
install: groff_mm.n groff_mmse.n
|
|
$(MAKE) -f Makefile.sub tmacdir=$(tmacdir) srcdir=$(srcdir) \
|
|
INSTALL_DATA='$(install)' tmac_m=$(tmac_m) install
|
|
|
|
uninstall: groff_mm.n groff_mmse.n
|
|
$(MAKE) -f Makefile.sub tmacdir=$(tmacdir) srcdir=$(srcdir) \
|
|
INSTALL_DATA='$(install)' tmac_m=$(tmac_m) uninstall_sub
|
|
|
|
.man.n:
|
|
@echo Making $@ from $<
|
|
@rm -f $@
|
|
@sed -e "s|@HYPHENFILE@|$(hyphenfile)|g" \
|
|
-e "s|@FONTDIR@|$(fontdir)|g" \
|
|
-e "s|@FONTPATH@|$(fontpath)|g" \
|
|
-e "s|@MACRODIR@|$(tmacdir)|g" \
|
|
-e "s|@MACROPATH@|$(tmacpath)|g" \
|
|
-e "s|@DEFAULT_DEVICE@|$(DEFAULT_DEVICE)|g" \
|
|
-e "s|@DEFAULT_INDEX@|$(indexdir)/$(indexname)|g" \
|
|
-e "s|@DEFAULT_INDEX_NAME@|$(indexname)|g" \
|
|
-e "s|@INDEX_SUFFIX@|$(indexext)|g" \
|
|
-e "s|@COMMON_WORDS_FILE@|$(common_words_file)|g" \
|
|
-e "s|@MAN1EXT@|$(man1ext)|g" \
|
|
-e "s|@MAN5EXT@|$(man5ext)|g" \
|
|
-e "s|@MAN7EXT@|$(man7ext)|g" \
|
|
-e "s|@TMAC_S@|$(tmac_s)|g" \
|
|
-e "s|@TMAC_M@|$(tmac_m)|g" \
|
|
-e "s|@TMAC_MDIR@|$(tmacdir)/mm|g" \
|
|
-e "s|@BROKEN_SPOOLER_FLAGS@|$(BROKEN_SPOOLER_FLAGS)|g" \
|
|
-e "s|@VERSION@|$(version)|g" \
|
|
-e "s|@MDATE@|$(mdate)|g" \
|
|
-e "s|@g@|$(g)|g" \
|
|
$< >$@
|
|
|
|
# Local Variables:
|
|
# mode: makefile
|
|
# fill-column: 72
|
|
# End:
|
|
# vim: set filetype=make textwidth=72:
|