Makefile.inc revision 147229
1# $FreeBSD: head/gnu/usr.bin/groff/Makefile.inc 147229 2005-06-10 07:06:07Z ru $
2
3BINDIR?=	/usr/bin
4SHELL=		/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).
9PAGE=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.
32BROKEN_SPOOLER_FLAGS=7
33
34# DEVICE is the default device.
35DEVICE=ps
36
37# PSPRINT is the command to use for printing a PostScript file,
38# for example `lpr'.
39PSPRINT=lpr
40
41# DVIPRINT is the command to use for printing a TeX dvi file,
42# for example `lpr -d'.
43DVIPRINT=lpr -d
44########################################################################
45# Don't touch...
46
47g=
48tmac_s_prefix=
49tmac_m_prefix=
50tmac_an_prefix=
51fontdir=/usr/share/groff_font
52localfontdir=$(fontdir)
53legacyfontdir=$(fontdir)
54tmacdir=/usr/share/tmac
55systemtmacdir=/usr/share/tmac
56localtmacdir=/usr/share/tmac
57docdir=/usr/src/contrib/groff/doc
58exampledir=XXX
59htmldocdir=XXX
60indexext=.i
61common_words_file=/usr/share/dict/eign
62indexdir=/usr/share/dict/papers
63indexname=Ind
64
65########################################################################
66# Libraries
67
68LIBGROFF=	${.OBJDIR}/${TOPREL}/src/libs/libgroff/libgroff.a
69LIBDRIVER=	${.OBJDIR}/${TOPREL}/src/libs/libdriver/libdriver.a
70LIBBIB=		${.OBJDIR}/${TOPREL}/src/libs/libbib/libbib.a
71
72CFLAGS+=	-DHAVE_CONFIG_H
73CFLAGS+=	-I${GROFF_DIST}/src/include -I${.CURDIR}/${TOPREL}/src/include
74CXXFLAGS+=	-fno-rtti -fno-exceptions
75
76.y.o:
77	$(YACC) $(YFLAGS) $(.IMPSRC)
78	mv -f y.tab.c $(.PREFIX).cpp
79	mv -f y.tab.h $(.PREFIX)_tab.h
80	${CXX} ${CXXFLAGS} -c $(.PREFIX).cpp -o ${.TARGET}
81
82.y.cpp:
83	$(YACC) $(YFLAGS) $(.IMPSRC)
84	mv -f y.tab.c $(.PREFIX).cpp
85	mv -f y.tab.h $(.PREFIX)_tab.h
86
87.SUFFIXES: .man .1 .2 .3 .4 .5 .6 .7 .8
88
89version=`cat $(GROFF_DIST)/VERSION`
90revision=`sed -e 's/^0$$//' -e 's/^[1-9].*$$/.&/' $(GROFF_DIST)/REVISION`
91
92.man.8 .man.7 .man.6 .man.5 .man.4 .man.3 .man.2 .man.1:
93	@${ECHO} Making $@ from $<
94	@-rm -f $@
95	@sed -e "s;@BINDIR@;${BINDIR};g" \
96	-e "s;@FONTDIR@;$(fontdir);g" \
97	-e "s;@LOCALFONTDIR@;$(localfontdir);g" \
98	-e "s;@LEGACYFONTDIR@;$(legacyfontdir);g" \
99	-e "s;@MACRODIR@;$(tmacdir);g" \
100	-e "s;@SYSTEMMACRODIR@;$(systemtmacdir);g" \
101	-e "s;@LOCALMACRODIR@;$(localtmacdir);g" \
102	-e "s;@DOCDIR@;$(docdir);g" \
103	-e "s;@EXAMPLEDIR@;$(exampledir);g" \
104	-e "s;@HTMLDOCDIR@;$(htmldocdir);g" \
105	-e "s;@DEVICE@;$(DEVICE);g" \
106	-e "s;@DEFAULT_INDEX@;$(indexdir)/$(indexname);g" \
107	-e "s;@DEFAULT_INDEX_NAME@;$(indexname);g" \
108	-e "s;@INDEX_SUFFIX@;$(indexext);g" \
109	-e "s;@COMMON_WORDS_FILE@;$(common_words_file);g" \
110	-e "s;@MAN1EXT@;1;g" \
111	-e "s;@MAN5EXT@;5;g" \
112	-e "s;@MAN7EXT@;7;g" \
113	-e "s;@TMAC_S_PREFIX@;$(tmac_s_prefix);g" \
114	-e "s;@TMAC_M_PREFIX@;$(tmac_m_prefix);g" \
115	-e "s;@TMAC_AN_PREFIX@;$(tmac_an_prefix);g" \
116	-e "s;@TMAC_MDIR@;$(tmacdir)/mm;g" \
117	-e "s;@BROKEN_SPOOLER_FLAGS@;$(BROKEN_SPOOLER_FLAGS);g" \
118	-e "s;@VERSION@;$(version)$(revision);g" \
119	-e "s;@MDATE@;`$(SHELL) ${GROFF_DIST}/mdate.sh $<`;g" \
120	-e "s;@g@;$(g);g" \
121	-e "s;@G@;`echo $(g) | LC_ALL=C tr a-z A-Z`;g" \
122	$< >$@
123
124.SUFFIXES: .sh .pl
125
126.sh .pl:
127	@${ECHO} Making ${.TARGET} from ${.IMPSRC}
128	@sed -e "s|@BINDIR@|${BINDIR}|g" \
129	     -e "s;@FONTDIR@;$(fontdir);g" \
130	     -e "s|@SEP@|:|g" \
131	     -e "s|@VERSION@|$(version)$(revision)|" \
132	     -e "s|@g@|$(g)|g" \
133	     ${.IMPSRC} >${.TARGET}
134
135TOPREL?=	..
136GROFF_DIST=	${.CURDIR}/${TOPREL}/../../../contrib/groff
137DIST_SUBDIR?=	${.CURDIR:T}
138DIST_DIR=	${GROFF_DIST}/${DIST_SUBDIR}
139.PATH: ${DIST_DIR}
140