summaryrefslogtreecommitdiff
path: root/contrib/mm/Makefile.sim
blob: 7cf9fe701435404233cd8125947cda081b623bfc (plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Copyright 1991, 1993, 2000, 2001
# 
# This file is part of groff.
# 
# 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 mgm 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|@DEVICE@|$(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" \
	-e "s!@G@;`echo $(g) | tr [a-z] [A-Z]`!g" \
	$< >$@