summaryrefslogtreecommitdiff
path: root/contrib/mom/Makefile.sub
blob: e95634619214d99ea063916636d692de251fc2c0 (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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
# Copyright (C) 2002-2006, 2009, 2012-2013
#   Free Software Foundation, Inc.
#      Written by Werner Lemberg (wl@gnu.org)
# 
# 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/>.

# These may be overridden if cross-compiling.
GROFFBIN=$(top_builddir)/src/roff/groff/groff
GROFF_BIN_PATH=`echo $(groff_bin_dirs) | sed -e 's|  *|$(SH_SEP)|g'`
PDFMOMBIN=$(top_builddir)/src/devices/gropdf/pdfmom

groff_bin_dirs=\
  $(top_builddir)/src/roff/groff \
  $(top_builddir)/src/roff/troff \
  $(top_builddir)/src/devices/grops \
  $(top_builddir)/src/devices/gropdf

FFLAG=-F$(top_builddir)/font -F$(top_srcdir)/font
TFLAG=-M$(top_builddir)/tmac -M$(top_srcdir)/tmac -M$(srcdir)

GROFF=\
  GROFF_COMMAND_PREFIX= \
  GROFF_BIN_PATH="$(GROFF_BIN_PATH)" \
  $(GROFFBIN) $(FFLAG) $(TFLAG)

PDFMOM=\
  GROFF_COMMAND_PREFIX= \
  GROFF_BIN_PATH="$(GROFF_BIN_PATH)" \
  PDFMOM_BIN_PATH="$(top_builddir)/src/devices/gropdf" \
  $(PDFMOMBIN) $(FFLAG) $(TFLAG)

MAN7=\
  groff_mom.n

NORMALFILES=\
  mom.tmac

# These files are processed with `strip.sed'.
STRIPFILES=\
  om.tmac

HTMLDOCFILES=\
  momdoc/stylesheet.css \
  momdoc/appendices.html \
  momdoc/color.html \
  momdoc/cover.html \
  momdoc/definitions.html \
  momdoc/docelement.html \
  momdoc/docprocessing.html \
  momdoc/goodies.html \
  momdoc/graphical.html \
  momdoc/headfootpage.html \
  momdoc/images.html \
  momdoc/inlines.html \
  momdoc/intro.html \
  momdoc/letters.html \
  momdoc/macrolist.html \
  momdoc/rectoverso.html \
  momdoc/refer.html \
  momdoc/reserved.html \
  momdoc/tables-of-contents.html \
  momdoc/toc.html \
  momdoc/typesetting.html \
  momdoc/using.html \
  momdoc/version-2.html

EXAMPLEFILES=\
  examples/letter.mom \
  examples/mom-pdf.mom \
  examples/sample_docs.mom \
  examples/typesetting.mom \
  examples/README.txt \
  examples/elvis_syntax \
  examples/elvis_syntax.new \
  examples/penguin.ps \
  examples/penguin.pdf \
  examples/mom.vim

PROCESSEDEXAMPLEFILES=\
  examples/letter.pdf \
  examples/mom-pdf.pdf \
  examples/sample_docs.pdf \
  examples/typesetting.pdf

HTMLDOCFILES_=`echo $(HTMLDOCFILES) | sed 's|momdoc/||g'`
EXAMPLEFILES_=`echo $(EXAMPLEFILES) | sed 's|examples/||g'`
PROCESSEDEXAMPLEFILES_=`echo $(PROCESSEDEXAMPLEFILES) | sed 's|examples/||g'`
PDFDOCFILE=mom-pdf.pdf

MOSTLYCLEANADD=\
  stamp-strip \
  penguin.ps \
  penguin.pdf \
  $(PROCESSEDEXAMPLEFILES) \
  examples/stamp \
  om.tmac-s

#.SUFFIXES: .mom .ps
#.mom.ps:
#	$(GROFF) -Tps -mom $< >$@

.SUFFIXES: .mom .pdf
.mom.pdf:
	$(PDFMOM) $< >$@

all: stamp-strip $(PROCESSEDEXAMPLEFILES)

$(PROCESSEDEXAMPLEFILES): penguin.ps penguin.pdf examples/stamp

penguin.ps:
	cp $(srcdir)/examples/penguin.ps .
penguin.pdf:
	cp $(srcdir)/examples/penguin.pdf .

examples/stamp:
	test -d examples || $(mkinstalldirs) examples
	touch $@

install_data: stamp-strip $(NORMALFILES) $(HTMLDOCFILES) \
              $(EXAMPLEFILES) $(PROCESSEDEXAMPLEFILES)
	-test -d $(DESTDIR)$(tmacdir) || $(mkinstalldirs) $(DESTDIR)$(tmacdir)
	for f in $(NORMALFILES); do \
	  rm -f $(DESTDIR)$(tmacdir)/$$f; \
	  $(INSTALL_DATA) $(srcdir)/$$f $(DESTDIR)$(tmacdir)/$$f; \
	done
	for f in $(STRIPFILES); do \
	  rm -f $(DESTDIR)$(tmacdir)/$$f; \
	  $(INSTALL_DATA) $$f-s $(DESTDIR)$(tmacdir)/$$f; \
	done
	-test -d $(DESTDIR)$(htmldocdir)/mom \
	  || $(mkinstalldirs) $(DESTDIR)$(htmldocdir)/mom
	for f in $(HTMLDOCFILES_); do \
	  rm -f $(DESTDIR)$(htmldocdir)/mom/$$f; \
	  $(INSTALL_DATA) $(srcdir)/momdoc/$$f \
	    $(DESTDIR)$(htmldocdir)/mom/$$f; \
	done
	-test -d $(DESTDIR)$(exampledir)/mom \
	  || $(mkinstalldirs) $(DESTDIR)$(exampledir)/mom
	for f in $(EXAMPLEFILES_); do \
	  rm -f $(DESTDIR)$(exampledir)/mom/$$f; \
	  $(INSTALL_DATA) $(srcdir)/examples/$$f \
	    $(DESTDIR)$(exampledir)/mom/$$f; \
	done
	for f in $(PROCESSEDEXAMPLEFILES_); do \
	  rm -f $(DESTDIR)$(exampledir)/mom/$$f; \
	  $(INSTALL_DATA) examples/$$f $(DESTDIR)$(exampledir)/mom/$$f; \
	done
	-test -d $(DESTDIR)$(pdfdocdir) \
	  || $(mkinstalldirs) $(DESTDIR)$(pdfdocdir)
	for f in $(PDFDOCFILE); do \
	  rm -f $(DESTDIR)$(pdfdocdir)/$$f; \
	  ln -s $(exampledir)/mom/$$f $(DESTDIR)$(pdfdocdir)/$$f; \
	done

stamp-strip: $(STRIPFILES)
	for f in $(STRIPFILES); do \
	  rm -f $$f-s; \
	  sed -f $(top_srcdir)/tmac/strip.sed $(srcdir)/$$f >$$f-s; \
	done
	touch $@

uninstall_sub:
	-for f in $(NORMALFILES) $(STRIPFILES); do \
	  rm -f $(DESTDIR)$(tmacdir)/$$f; \
	done
	-for f in $(HTMLDOCFILES_); do \
	  rm -f $(DESTDIR)$(htmldocdir)/mom/$$f; \
	done
	-rmdir $(DESTDIR)$(htmldocdir)/mom
	-for f in $(EXAMPLEFILES_) $(PROCESSEDEXAMPLEFILES_); do \
	  rm -f $(DESTDIR)$(exampledir)/mom/$$f; \
	done
	-for f in $(PDFDOCFILE); do \
	  rm -f $(DESTDIR)$(pdfdocdir)/$$f; \
	done
	-rmdir $(DESTDIR)$(exampledir)/mom