Import of mom
[s-roff.git] / contrib / mom / Makefile.sub
blob8606e0b475fe324f0c7d29c9a4d50cb3ec4ec4c0
1 # Copyright (C) 2002 Free Software Foundation, Inc.
2 #      Written by Werner Lemberg (wl@gnu.org)
3
4 # This file is part of groff.
5
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
9 # version.
10
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
14 # for more details.
15
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, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 groff_bin_dirs=\
21   $(top_builddir)/roff/groff \
22   $(top_builddir)/roff/troff \
23   $(top_builddir)/devices/grops
24 groff_bin_path=`echo $(groff_bin_dirs) | sed -e 's| \+|:|g'`
26 FFLAG=-F$(top_builddir)/font
27 TFLAG=-M$(srcdir)
29 GROFF=GROFF_BIN_PATH=$(groff_bin_path); \
30       export GROFF_BIN_PATH; \
31       $(top_builddir)/src/roff/groff/groff $(FFLAG) $(TFLAG)
33 MAN7=\
34   groff_mom.n
36 NORMALFILES=\
37   mom.tmac \
38   om.tmac
40 momdocdir=$(htmldocdir)/momdoc
42 HTMLDOCFILES=\
43   appendices.html \
44   cover.html \
45   definitions.html \
46   docelement.html \
47   docprocessing.html \
48   goodies.html \
49   headfootpage.html \
50   inlines.html \
51   intro.html \
52   letters.html \
53   rectoverso.html \
54   reserved.html \
55   toc.html \
56   typemacdoc.html \
57   typesetting.html \
58   using.html
60 EXAMPLEFILES=\
61   examples/macros.mom \
62   examples/typeset.mom \
63   examples/typewrite.mom
65 EXTRAEXAMPLEFILES=\
66   examples/README.mom \
67   examples/elvis_syntax \
68   examples/penguin.ps
70 PROCESSEDEXAMPLEFILES=\
71   examples/macros.ps \
72   examples/typeset.ps \
73   examples/typewrite.ps
75 CLEANADD=\
76   penguin.ps \
77   $(PROCESSEDEXAMPLEFILES)
79 all: make_examples
81 .PHONY: make_examples
82 make_examples: prepare_make_examples $(PROCESSEDEXAMPLEFILES)
84 prepare_make_examples: $(srcdir)/examples/penguin.ps
85         test -d examples || $(mkinstalldirs) examples
86         cp $< .
87         
88 examples/macros.ps: $(srcdir)/examples/macros.mom
89         $(GROFF) -Tps -mom $< >$@
91 examples/typeset.ps: $(srcdir)/examples/typeset.mom
92         $(GROFF) -Tps -mom $< >$@
94 examples/typewrite.ps: $(srcdir)/examples/typewrite.mom
95         $(GROFF) -Tps -mom $< >$@
97 install_data: $(NORMALFILES) \
98               $(EXAMPLEFILES) $(EXTRAEXAMPLEFILES) $(PROCESSEDEXAMPLEFILES)
99         -test -d $(tmacdir) || $(mkinstalldirs) $(tmacdir)
100         for f in $(NORMALFILES); do \
101           rm -f $(tmacdir)/$$f; \
102           $(INSTALL_DATA) $(srcdir)/$$f $(tmacdir)/$$f; \
103         done
104         -test -d $(momdocdir) || $(mkinstalldirs) $(momdocdir)
105         for f in $(HTMLDOCFILES); do \
106           rm -f $(momdocdir)/$$f; \
107           $(INSTALL_DATA) $(srcdir)/momdoc/$$f $(momdocdir)/$$f; \
108         done
109         -test -d $(exampledir) || $(mkinstalldirs) $(exampledir)
110         for f in $(EXAMPLEFILES) $(EXTRAEXAMPLEFILES) \
111                  $(PROCESSEDEXAMPLEFILES); do \
112           rm -f $(exampledir)/$$f; \
113           $(INSTALL_DATA) $(srcdir)/$$f $(docdir)/$$f;
114         done
116 uninstall_sub:
117         -for f in $(NORMALFILES); do \
118           rm -f $(tmacdir)/$$f; \
119         done
120         -for f in $(HTMLDOCFILES); do \
121           rm -f $(momdocdir)/$$f; \
122         done
123         -rmdir $(momdocdir)
124         -for f in $(EXAMPLEFILES) $(EXTRAEXAMPLEFILES) \
125                   $(PROCESSEDEXAMPLEFILES); do \
126           rm -f $(docdir)/$$f;
127         done