1 # Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
2 # Written by Werner Lemberg (wl@gnu.org)
4 # This file is part of groff.
6 # groff is free software; you can redistribute it and/or modify it under
7 # the terms of the GNU General Public License as published by the Free
8 # Software Foundation; either version 2, or (at your option) any later
11 # groff is distributed in the hope that it will be useful, but WITHOUT ANY
12 # WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 # You should have received a copy of the GNU General Public License along
17 # with groff; see the file COPYING. If not, write to the Free Software
18 # Foundation, 51 Franklin St - Fifth Floor, Boston, MA 02110-1301, USA.
20 # These may be overridden if cross-compiling.
21 GROFFBIN=$(top_builddir)/src/roff/groff/groff
22 GROFF_BIN_PATH=`echo $(groff_bin_dirs) | sed -e 's| *|$(SH_SEP)|g'`
25 $(top_builddir)/src/roff/groff \
26 $(top_builddir)/src/roff/troff \
27 $(top_builddir)/src/devices/grops
29 FFLAG=-F$(top_builddir)/font -F$(top_srcdir)/font
30 TFLAG=-M$(top_builddir)/tmac -M$(top_srcdir)/tmac -M$(srcdir)
32 GROFF=GROFF_COMMAND_PREFIX=''; \
33 export GROFF_COMMAND_PREFIX; \
34 GROFF_BIN_PATH=$(GROFF_BIN_PATH); \
35 export GROFF_BIN_PATH; \
36 $(GROFFBIN) $(FFLAG) $(TFLAG)
46 momdoc/appendices.html \
49 momdoc/definitions.html \
50 momdoc/docelement.html \
51 momdoc/docprocessing.html \
53 momdoc/headfootpage.html \
57 momdoc/macrolist.html \
58 momdoc/rectoverso.html \
60 momdoc/reserved.html \
62 momdoc/typemacdoc.html \
63 momdoc/typesetting.html \
68 examples/sample_docs.mom \
69 examples/typesetting.mom \
71 examples/elvis_syntax \
72 examples/elvis_syntax.new \
75 PROCESSEDEXAMPLEFILES=\
77 examples/sample_docs.ps \
78 examples/typesetting.ps
80 HTMLDOCFILES_=`echo $(HTMLDOCFILES) | sed 's|momdoc/||g'`
81 EXAMPLEFILES_=`echo $(EXAMPLEFILES) | sed 's|examples/||g'`
82 PROCESSEDEXAMPLEFILES_=`echo $(PROCESSEDEXAMPLEFILES) | sed 's|examples/||g'`
86 $(PROCESSEDEXAMPLEFILES) \
91 $(GROFF) -Tps -mom $< >$@
94 all: $(PROCESSEDEXAMPLEFILES)
96 $(PROCESSEDEXAMPLEFILES): penguin.ps examples/stamp
99 cp $(srcdir)/examples/penguin.ps .
102 test -d examples || $(mkinstalldirs) examples
105 install_data: $(NORMALFILES) $(HTMLDOCFILES) \
106 $(EXAMPLEFILES) $(PROCESSEDEXAMPLEFILES)
107 -test -d $(tmacdir) || $(mkinstalldirs) $(tmacdir)
108 for f in $(NORMALFILES); do \
109 rm -f $(tmacdir)/$$f; \
110 $(INSTALL_DATA) $(srcdir)/$$f $(tmacdir)/$$f; \
112 -test -d $(htmldocdir)/mom || $(mkinstalldirs) $(htmldocdir)/mom
113 for f in $(HTMLDOCFILES_); do \
114 rm -f $(htmldocdir)/mom/$$f; \
115 $(INSTALL_DATA) $(srcdir)/momdoc/$$f $(htmldocdir)/mom/$$f; \
117 -test -d $(exampledir)/mom || $(mkinstalldirs) $(exampledir)/mom
118 for f in $(EXAMPLEFILES_); do \
119 rm -f $(exampledir)/mom/$$f; \
120 $(INSTALL_DATA) $(srcdir)/examples/$$f $(exampledir)/mom/$$f; \
122 for f in $(PROCESSEDEXAMPLEFILES_); do \
123 rm -f $(exampledir)/mom/$$f; \
124 $(INSTALL_DATA) examples/$$f $(exampledir)/mom/$$f; \
128 -for f in $(NORMALFILES); do \
129 rm -f $(tmacdir)/$$f; \
131 -for f in $(HTMLDOCFILES_); do \
132 rm -f $(htmldocdir)/mom/$$f; \
134 -rmdir $(htmldocdir)/mom
135 -for f in $(EXAMPLEFILES_) $(PROCESSEDEXAMPLEFILES_); do \
136 rm -f $(exampledir)/mom/$$f; \
138 -rmdir $(exampledir)/mom