Deleted Added
full compact
Makefile.inc (147229) Makefile.inc (151504)
1# $FreeBSD: head/gnu/usr.bin/groff/Makefile.inc 147229 2005-06-10 07:06:07Z ru $
1# $FreeBSD: head/gnu/usr.bin/groff/Makefile.inc 151504 2005-10-20 10:57:53Z 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

--- 42 unchanged lines hidden (view full) ---

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
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

--- 42 unchanged lines hidden (view full) ---

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
60pdfdocdir=XXX
60indexext=.i
61common_words_file=/usr/share/dict/eign
62indexdir=/usr/share/dict/papers
63indexname=Ind
64
65########################################################################
66# Libraries
67

--- 29 unchanged lines hidden (view full) ---

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" \
61indexext=.i
62common_words_file=/usr/share/dict/eign
63indexdir=/usr/share/dict/papers
64indexname=Ind
65
66########################################################################
67# Libraries
68

--- 29 unchanged lines hidden (view full) ---

98 -e "s;@LOCALFONTDIR@;$(localfontdir);g" \
99 -e "s;@LEGACYFONTDIR@;$(legacyfontdir);g" \
100 -e "s;@MACRODIR@;$(tmacdir);g" \
101 -e "s;@SYSTEMMACRODIR@;$(systemtmacdir);g" \
102 -e "s;@LOCALMACRODIR@;$(localtmacdir);g" \
103 -e "s;@DOCDIR@;$(docdir);g" \
104 -e "s;@EXAMPLEDIR@;$(exampledir);g" \
105 -e "s;@HTMLDOCDIR@;$(htmldocdir);g" \
106 -e "s;@PDFDOCDIR@;$(pdfdocdir);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" \

--- 8 unchanged lines hidden (view full) ---

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" \
107 -e "s;@DEVICE@;$(DEVICE);g" \
108 -e "s;@DEFAULT_INDEX@;$(indexdir)/$(indexname);g" \
109 -e "s;@DEFAULT_INDEX_NAME@;$(indexname);g" \
110 -e "s;@INDEX_SUFFIX@;$(indexext);g" \
111 -e "s;@COMMON_WORDS_FILE@;$(common_words_file);g" \
112 -e "s;@MAN1EXT@;1;g" \
113 -e "s;@MAN5EXT@;5;g" \
114 -e "s;@MAN7EXT@;7;g" \

--- 8 unchanged lines hidden (view full) ---

123 -e "s;@G@;`echo $(g) | LC_ALL=C tr a-z A-Z`;g" \
124 $< >$@
125
126.SUFFIXES: .sh .pl
127
128.sh .pl:
129 @${ECHO} Making ${.TARGET} from ${.IMPSRC}
130 @sed -e "s|@BINDIR@|${BINDIR}|g" \
131 -e 's|@GROFF_BIN_PATH_SETUP@|GROFF_RUNTIME="$${GROFF_BIN_PATH=${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}
132 -e "s;@FONTDIR@;$(fontdir);g" \
133 -e "s|@SEP@|:|g" \
134 -e "s|@VERSION@|$(version)$(revision)|" \
135 -e "s|@g@|$(g)|g" \
136 ${.IMPSRC} >${.TARGET}
137
138TOPREL?= ..
139GROFF_DIST= ${.CURDIR}/${TOPREL}/../../../contrib/groff
140DIST_SUBDIR?= ${.CURDIR:T}
141DIST_DIR= ${GROFF_DIST}/${DIST_SUBDIR}
142.PATH: ${DIST_DIR}