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