* All affected files: Update postal address of FSF.
[s-roff.git] / contrib / pdfmark / Makefile.sub
blob0240c6a708c8d3a50b3ef40faf120c02da6e397e
1 # Copyright (C) 2005, Free Software Foundation, Inc.
2 #      Written by Keith Marshall (keith.d.marshall@ntlworld.com)
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, 51 Franklin St - Fifth Floor, Boston, MA 02110-1301, USA.
20 MAN1=\
21   pdfroff.n
23 CMDFILES=\
24   pdfroff
26 TMACFILES=\
27   pdfmark.tmac \
28   spdf.tmac
30 PDFDOCFILES=\
31   pdfmark.pdf
33 CLEANADD=\
34   gnu.eps \
35   $(PDFDOCFILES) \
36   $(CMDFILES)
38 GROFF_BIN_DIR=$(top_builddir)/src/roff/groff
39 GROFF_OTHER_BIN_DIRS=\
40   $(top_builddir)/src/roff/troff \
41   $(top_builddir)/src/devices/grops
42 GROFF_BIN_DIRS=$(GROFF_BIN_DIR) $(GROFF_OTHER_BIN_DIRS)
43 GROFF_BIN_PATH=`echo $(GROFF_BIN_DIRS) | sed -e 's|  *|$(SH_SEP)|g'`
45 FFLAG=-F$(top_builddir)/font -F$(top_srcdir)/font
46 MFLAG=-M$(srcdir) -M$(top_builddir)/tmac -M$(top_srcdir)/tmac
47 PFLAG=-dpaper=$(PAGE) -P-p$(PAGE)
49 PDFROFF=\
50   export GROFF_COMMAND_PREFIX; GROFF_COMMAND_PREFIX=''; \
51   export GROFF_BIN_DIR; GROFF_BIN_DIR=$(GROFF_BIN_DIR); \
52   export GROFF_BIN_PATH; GROFF_BIN_PATH=$(GROFF_BIN_PATH); \
53   ./pdfroff $(FFLAG) $(MFLAG) $(PFLAG)
55 .SUFFIXES: .ms .pdf
56 .ms.pdf:
57         $(RM) $@
58         $(PDFROFF) -mspdf --style=$(srcdir)/cover.ms $< >$@
60 all: pdfroff $(make_pdfdoc)
62 pdfdoc: gnu.eps $(PDFDOCFILES)
64 gnu.eps:
65         if test -f $(top_srcdir)/doc/gnu.eps; then \
66           cp $(top_srcdir)/doc/gnu.eps . ; \
67         elif test -f $(top_builddir)/doc/gnu.eps; then \
68           cp $(top_builddir)/doc/gnu.eps . ; \
69         else \
70           xpmtoppm $(top_srcdir)/doc/gnu.xpm | pnmdepth 15 | \
71             $(pnmtops_nosetpage) -noturn -rle >$@ ; \
72         fi
74 pdfroff: pdfroff.sh $(SH_DEPS_SED_SCRIPT)
75         $(RM) $@
76         sed -f $(SH_DEPS_SED_SCRIPT) \
77             -e "s|@VERSION@|$(version)$(revision)|" \
78             -e "s|@GROFF_AWK_INTERPRETERS@|$(ALT_AWK_PROGS)|" \
79             -e "s|@GROFF_GHOSTSCRIPT_INTERPRETERS@|$(ALT_GHOSTSCRIPT_PROGS)|" \
80             -e "s|@GROFF_BIN_DIR@|$(bindir)|" $(srcdir)/pdfroff.sh >$@
81         chmod +x $@
83 install_data: $(make_install_pdfdoc)
84         -test -d $(bindir) || $(mkinstalldirs) $(bindir)
85         for f in $(CMDFILES); do \
86           $(RM) $(bindir)/$$f; \
87           $(INSTALL_SCRIPT) $$f $(bindir)/$$f; \
88         done
89         -test -d $(tmacdir) || $(mkinstalldirs) $(tmacdir)
90         for f in $(TMACFILES); do \
91           $(RM) $(tmacdir)/$$f; \
92           $(INSTALL_DATA) $(srcdir)/$$f $(tmacdir)/$$f; \
93         done
95 install_pdfdoc:
96         -test -d $(pdfdocdir) || $(mkinstalldirs) $(pdfdocdir)
97         for f in $(PDFDOCFILES); do \
98           $(RM) $(pdfdocdir)/$$f; \
99           $(INSTALL_DATA) $$f $(pdfdocdir)/$$f; \
100         done
102 uninstall_sub:
103         for f in $(CMDFILES); do \
104           $(RM) $(bindir)/$$f; \
105         done
106         for f in $(TMACFILES); do \
107           $(RM) $(tmacdir)/$$f; \
108         done
109         for f in $(PDFDOCFILES); do \
110           $(RM) $(pdfdocdir)/$$f; \
111         done