Merge from vendor branch OPENSSH:
[dragonfly.git] / gnu / usr.bin / groff / Makefile.inc
1 # $FreeBSD: src/gnu/usr.bin/groff/Makefile.inc,v 2.11 2005/06/10 07:06:07 ru Exp $
2 # $DragonFly: src/gnu/usr.bin/groff/Makefile.inc,v 1.5 2007/03/22 23:31:22 swildner Exp $
3
4 BINDIR?=        /usr/bin
5 SHELL=          /bin/sh
6
7 # Define `page' to be letter if your PostScript printer uses 8.5x11
8 # paper (USA) and define it to be A4, if it uses A4 paper (rest of the
9 # world).
10 .if defined(GROFF_PAPER_SIZE)
11 PAGE=${GROFF_PAPER_SIZE}
12 .else
13 PAGE=letter
14 .endif
15
16 # Normally the Postscript driver, grops, produces output that conforms
17 # to version 3.0 of the Adobe Document Structuring Conventions.
18 # Unfortunately some spoolers and previewers can't handle such output.
19 # The BROKEN_SPOOLER_FLAGS variable tells grops what it should do to
20 # make its output acceptable to such programs.  This variable controls
21 # only the default behaviour of grops; the behaviour can be changed at
22 # runtime by the grops -b option (and so by groff -P-b).
23 # Use a value of 0 if your spoolers and previewers are able to handle
24 # conforming PostScript correctly.
25 # Add 1 if no %%{Begin,End}DocumentSetup comments should be generated;
26 # this is needed for early versions of TranScript that get confused by
27 # anything between the %%EndProlog line and the first %%Page: comment.
28 # Add 2 if lines in included files beginning with %! should be
29 # stripped out; this is needed for the OpenWindows 2.0 pageview previewer.
30 # Add 4 if %%Page, %%Trailer and %%EndProlog comments should be
31 # stripped out of included files; this is needed for spoolers that
32 # don't understand the %%{Begin,End}Document comments. I suspect this
33 # includes early versions of TranScript.
34 # Add 8 if the first line of the PostScript output should be %!PS-Adobe-2.0
35 # rather than %!PS-Adobe-3.0; this is needed when using Sun's Newsprint
36 # with a printer that requires page reversal.
37 BROKEN_SPOOLER_FLAGS=7
38
39 # DEVICE is the default device.
40 DEVICE=ps
41
42 # PSPRINT is the command to use for printing a PostScript file,
43 # for example `lpr'.
44 PSPRINT=lpr
45
46 # DVIPRINT is the command to use for printing a TeX dvi file,
47 # for example `lpr -d'.
48 DVIPRINT=lpr -d
49 ########################################################################
50 # Don't touch...
51
52 g=
53 tmac_s_prefix=
54 tmac_m_prefix=
55 tmac_an_prefix=
56 fontdir=/usr/share/groff_font
57 localfontdir=$(fontdir)
58 legacyfontdir=$(fontdir)
59 tmacdir=/usr/share/tmac
60 systemtmacdir=/usr/share/tmac
61 localtmacdir=/usr/share/tmac
62 docdir=/usr/src/contrib/groff/doc
63 exampledir=XXX
64 htmldocdir=XXX
65 indexext=.i
66 common_words_file=/usr/share/dict/eign
67 indexdir=/usr/share/dict/papers
68 indexname=Ind
69
70 ########################################################################
71 # Libraries
72
73 LIBGROFF=       ${.OBJDIR}/${TOPREL}/src/libs/libgroff/libgroff.a
74 LIBDRIVER=      ${.OBJDIR}/${TOPREL}/src/libs/libdriver/libdriver.a
75 LIBBIB=         ${.OBJDIR}/${TOPREL}/src/libs/libbib/libbib.a
76
77 CFLAGS+=        -DHAVE_CONFIG_H
78 CFLAGS+=        -I${GROFF_DIST}/src/include -I${.CURDIR}/${TOPREL}/src/include
79 CXXFLAGS+=      -fno-rtti -fno-exceptions
80
81 .y.o:
82         $(YACC) $(YFLAGS) $(.IMPSRC)
83         mv -f y.tab.c $(.PREFIX).cpp
84         mv -f y.tab.h $(.PREFIX)_tab.h
85         ${CXX} ${CXXFLAGS} -c $(.PREFIX).cpp -o ${.TARGET}
86
87 .y.cpp:
88         $(YACC) $(YFLAGS) $(.IMPSRC)
89         mv -f y.tab.c $(.PREFIX).cpp
90         mv -f y.tab.h $(.PREFIX)_tab.h
91
92 .SUFFIXES: .man .1 .2 .3 .4 .5 .6 .7 .8
93
94 version=`cat $(GROFF_DIST)/VERSION`
95 revision=`sed -e 's/^0$$//' -e 's/^[1-9].*$$/.&/' $(GROFF_DIST)/REVISION`
96
97 .man.8 .man.7 .man.6 .man.5 .man.4 .man.3 .man.2 .man.1:
98         @${ECHO} Making $@ from $<
99         @-rm -f $@
100         @sed -e "s;@BINDIR@;${BINDIR};g" \
101         -e "s;@FONTDIR@;$(fontdir);g" \
102         -e "s;@LOCALFONTDIR@;$(localfontdir);g" \
103         -e "s;@LEGACYFONTDIR@;$(legacyfontdir);g" \
104         -e "s;@MACRODIR@;$(tmacdir);g" \
105         -e "s;@SYSTEMMACRODIR@;$(systemtmacdir);g" \
106         -e "s;@LOCALMACRODIR@;$(localtmacdir);g" \
107         -e "s;@DOCDIR@;$(docdir);g" \
108         -e "s;@EXAMPLEDIR@;$(exampledir);g" \
109         -e "s;@HTMLDOCDIR@;$(htmldocdir);g" \
110         -e "s;@DEVICE@;$(DEVICE);g" \
111         -e "s;@DEFAULT_INDEX@;$(indexdir)/$(indexname);g" \
112         -e "s;@DEFAULT_INDEX_NAME@;$(indexname);g" \
113         -e "s;@INDEX_SUFFIX@;$(indexext);g" \
114         -e "s;@COMMON_WORDS_FILE@;$(common_words_file);g" \
115         -e "s;@MAN1EXT@;1;g" \
116         -e "s;@MAN5EXT@;5;g" \
117         -e "s;@MAN7EXT@;7;g" \
118         -e "s;@TMAC_S_PREFIX@;$(tmac_s_prefix);g" \
119         -e "s;@TMAC_M_PREFIX@;$(tmac_m_prefix);g" \
120         -e "s;@TMAC_AN_PREFIX@;$(tmac_an_prefix);g" \
121         -e "s;@TMAC_MDIR@;$(tmacdir)/mm;g" \
122         -e "s;@BROKEN_SPOOLER_FLAGS@;$(BROKEN_SPOOLER_FLAGS);g" \
123         -e "s;@VERSION@;$(version)$(revision);g" \
124         -e "s;@MDATE@;`stat -f %Sm -t '%d %B %Y' $<`;g" \
125         -e "s;@g@;$(g);g" \
126         -e "s;@G@;`echo $(g) | LC_ALL=C tr a-z A-Z`;g" \
127         $< >$@
128
129 .SUFFIXES: .sh .pl
130
131 .sh .pl:
132         @${ECHO} Making ${.TARGET} from ${.IMPSRC}
133         @sed -e "s|@BINDIR@|${BINDIR}|g" \
134              -e "s;@FONTDIR@;$(fontdir);g" \
135              -e "s|@GROFF_BIN_PATH_SETUP@|GROFF_RUNTIME=\"\$${GROFF_BIN_PATH=${BINDIR}}:\"|g" \
136              -e "s|@SEP@|:|g" \
137              -e "s|@VERSION@|$(version)$(revision)|" \
138              -e "s|@g@|$(g)|g" \
139              ${.IMPSRC} >${.TARGET}
140
141 TOPREL?=        ..
142 GROFF_DIST=     ${.CURDIR}/${TOPREL}/../../../contrib/groff-1.19
143 DIST_SUBDIR?=   ${.CURDIR:T}
144 DIST_DIR=       ${GROFF_DIST}/${DIST_SUBDIR}
145 .PATH: ${DIST_DIR}