1 # Copyright (C) 1989-2000 Free Software Foundation, Inc.
2 # Written by James Clark (jjc@jclark.com)
4 # This file is part of groff.
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
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
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, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 # Define `page' to be letter if your PostScript printer uses 8.5x11
21 # paper (USA) and define it to be A4, if it uses A4 paper (rest of the
25 # Normally the Postscript driver, grops, produces output that conforms
26 # to version 3.0 of the Adobe Document Structuring Conventions.
27 # Unfortunately some spoolers and previewers can't handle such output.
28 # The BROKEN_SPOOLER_FLAGS variable tells grops what it should do to
29 # make its output acceptable to such programs. This variable controls
30 # only the default behaviour of grops; the behaviour can be changed at
31 # runtime by the grops -b option (and so by groff -P-b).
32 # Use a value of 0 if your spoolers and previewers are able to handle
33 # conforming PostScript correctly.
34 # Add 1 if no %%{Begin,End}DocumentSetup comments should be generated;
35 # this is needed for early versions of TranScript that get confused by
36 # anything between the %%EndProlog line and the first %%Page: comment.
37 # Add 2 if lines in included files beginning with %! should be
38 # stripped out; this is needed for the OpenWindows 2.0 pageview previewer.
39 # Add 4 if %%Page, %%Trailer and %%EndProlog comments should be
40 # stripped out of included files; this is needed for spoolers that
41 # don't understand the %%{Begin,End}Document comments. I suspect this
42 # includes early versions of TranScript.
43 # Add 8 if the first line of the PostScript output should be %!PS-Adobe-2.0
44 # rather than %!PS-Adobe-3.0; this is needed when using Sun's Newsprint
45 # with a printer that requires page reversal.
46 BROKEN_SPOOLER_FLAGS
=@BROKEN_SPOOLER_FLAGS@
48 # DEVICE is the default device.
51 # TTYDEVDIRS is either `font/devascii font/devlatin1' (for ASCII) or
52 # `font/devcp1047' (for EBCDIC).
53 TTYDEVDIRS
=@TTYDEVDIRS@
55 # PSPRINT is the command to use for printing a PostScript file,
59 # DVIPRINT is the command to use for printing a TeX dvi file,
60 # for example `lpr -d'.
63 # Prefix for names of programs that have Unix counterparts.
64 # For example, if `g' is `g' then troff will be installed as
65 # gtroff. This doesn't affect programs like grops or groff that have
66 # no Unix counterparts. Note that the groff versions of eqn and tbl
67 # will not work with Unix troff.
70 # Common prefix for installation directories.
71 # Used in definitions of exec_prefix, datasubdir, fontpath, manroot.
72 # This must already exist when you do make install.
75 exec_prefix=@
exec_prefix@
77 # bindir says where to install executables.
78 bindir=$(exec_prefix)/bin
80 # datasubdir says where to install data files
81 datadir=$(prefix)/share
82 datasubdir
=$(datadir)/groff
84 # fontdir says where to install dev*/*.
85 fontdir
=$(datasubdir
)/font
87 # fontpath says where to look for dev*/*.
88 fontpath
=.
:$(fontdir
):/usr
/lib
/font
90 # tmacdir says where to install macros.
91 tmacdir
=$(datasubdir
)/tmac
93 # tmacpath says where to look for macro files.
96 # sys_tmac_prefix is prefix (if any) for system macro packages
97 sys_tmac_prefix
=@sys_tmac_prefix@
99 # tmac_wrap is list of system macro packages that should be made
100 # available to groff by creating a corresponding macro package
101 # in the groff macro directory that references the system macro
103 tmac_wrap
=@tmac_wrap@
105 # If there is a groff version of a macro package listed in $(tmac_wrap),
106 # then the groff version will be installed with a prefix of this.
107 # Don't make this empty.
110 # The groff -mm macros will be available as -m$(tmac_m_prefix)m.
112 `for i in $(tmac_wrap) ""; do case "$$i" in m) echo $(tmac_prefix);; esac; done`
113 # The groff -ms macros will be available as -m$(tmac_s_prefix)s.
115 `for i in $(tmac_wrap) ""; do case "$$i" in s) echo $(tmac_prefix);; esac; done`
116 # The groff -man macros will be available as -m$(tmac_an_prefix)an.
118 `for i in $(tmac_wrap) ""; do case "$$i" in an) echo $(tmac_prefix);; esac; done`
120 # Extension to be used for refer index files. Index files are not
121 # sharable between different architectures, so you might want to use
122 # different suffixes for different architectures. Choose an extension
123 # that doesn't conflict with refer or any other indexing program.
126 # Directory containing the default index for refer.
127 indexdir
=/usr
/dict
/papers
129 # The filename (without suffix) of the default index for refer.
132 # common_words_file is a file containing a list of common words.
133 # If your system provides /usr/lib/eign it will be copied onto this,
134 # otherwise the supplied eign file will be used.
135 common_words_file
=$(datasubdir
)/eign
137 # manroot is the root of the man page directory tree.
138 manroot
=$(prefix)/man
140 # man1ext is the man section for user commands.
142 man1dir=$(manroot
)/man
$(man1ext)
144 # man5ext is the man section for file formats.
146 man5dir=$(manroot
)/man
$(man5ext)
148 # man7ext is the man section for macros.
150 man7dir=$(manroot
)/man
$(man7ext)
152 # DEFINES should include the following:
153 # -DHAVE_MMAP if you have mmap() and <sys/mman.h>
154 # -DARRAY_DELETE_NEEDS_SIZE if your C++ doesn't understand `delete []'
155 # -DHAVE_SYS_SIGLIST if you have sys_siglist[]
156 # -DWCOREFLAG=0200 if the 0200 bit of the status returned by
157 # wait() indicates whether a core image was
158 # produced for a process that was terminated
160 # -DHAVE_UNISTD_H if you have <unistd.h>
161 # -DHAVE_CC_OSFCN_H if you have a C++ <osfcn.h>
162 # -DHAVE_DIRENT_H if you have <dirent.h>
163 # -DHAVE_LIMITS_H if you have <limits.h>
164 # -DHAVE_CC_LIMITS_H if you have a C++ <limits.h>
165 # -DHAVE_SYS_DIR_H if you have <sys/dir.h>
166 # -DHAVE_STDLIB_H if you have <stdlib.h>
167 # -DHAVE_STRINGS_H if you have <strings.h>
168 # -DHAVE_RENAME if you have rename()
169 # -DHAVE_MKSTEMP if you have mkstemp()
170 # -DHAVE_STRDUP if you have strdup()
171 # -DHAVE_STRSEP if you have strsep()
172 # -DHAVE_STRCASECMP if you have strcasecmp()
173 # -DSTDLIB_H_DECLARES_PUTENV if your C++ <stdlib.h> declares putenv()
174 # -DSTDIO_H_DECLARES_POPEN if your C++ <stdio.h> declares popen()
175 # -DSTDIO_H_DECLARES_PCLOSE if your C++ <stdio.h> declares pclose()
176 # -DHAVE_SYS_NERR if you have sysnerr in <errno.h> or <stdio.h>
177 # -DHAVE_SYS_ERRLIST if you have sys_errlist in <errno.h> or
179 # -DMATH_H_DECLARES_HYPOT if you have hypot() in <math.h>
180 # -DTRADITIONAL_CPP if your C++ compiler uses a traditional
181 # (Reiser) preprocessor
182 # -DLONG_FOR_TIME_T if localtime() takes a long * not a time_t *
183 # -DHAVE_STRUCT_EXCEPTION if <math.h> defines struct exception
184 # -DRETSIGTYPE=int if signal handlers return int not void
185 # -DIS_EBCDIC_HOST if the host's encoding is EBCDIC
188 # Include fmod.o, strtol.o, getcwd.o, strerror.o, putenv.o in LIBOBJS if
189 # your C library is missing the corresponding function.
192 # CCC is the compiler for C++ (.cc) files.
195 # CCDEFINES are definitions for C++ compilations.
197 # CDEFINES are definitions for C compilations.
210 INSTALL_PROGRAM
=@INSTALL_PROGRAM@
211 INSTALL_SCRIPT
=@INSTALL_SCRIPT@
212 INSTALL_DATA
=@INSTALL_DATA@
217 # Flag that tells etags to assume C++.
221 # Sed command with which to edit sh scripts.
222 SH_SCRIPT_SED_CMD
=@SH_SCRIPT_SED_CMD@
225 top_srcdir
=@top_srcdir@
227 top_builddir
=@top_builddir@
229 # the program to create directory hierarchies
230 mkinstalldirs
=$(top_srcdir
)/mkinstalldirs
234 #PURIFYCCFLAGS=-g++=yes \
235 # -collector=`dirname \`$(CCC) -print-libgcc-file-name\``/ld
237 # Passing down MAKEOVERRIDES prevents $(MAKE) from containing a second
238 # copy of $(MDEFINES) when making individual directories; this could
239 # cause the argument list to become too long on some systems.
241 "MAKEOVERRIDES=$(MAKEOVERRIDES)" \
243 "BROKEN_SPOOLER_FLAGS=$(BROKEN_SPOOLER_FLAGS)" \
245 "TTYDEVDIRS=$(TTYDEVDIRS)" \
246 "PSPRINT=$(PSPRINT)" \
247 "DVIPRINT=$(DVIPRINT)" \
248 "top_srcdir=$(top_srcdir)" \
249 "top_builddir=$(top_builddir)" \
251 "exec_prefix=$(exec_prefix)" \
254 "datadir=$(datadir)" \
255 "datasubdir=$(datasubdir)" \
256 "fontdir=$(fontdir)" \
257 "fontpath=$(fontpath)" \
258 "tmacdir=$(tmacdir)" \
259 "tmacpath=$(tmacpath)" \
260 "indexext=$(indexext)" \
261 "indexdir=$(indexdir)" \
262 "indexname=$(indexname)" \
263 "common_words_file=$(common_words_file)" \
264 "manroot=$(manroot)" \
265 "man1ext=$(man1ext)" \
266 "man1dir=$(man1dir)" \
267 "man5ext=$(man5ext)" \
268 "man5dir=$(man5dir)" \
269 "man7ext=$(man7ext)" \
270 "man7dir=$(man7dir)" \
271 "mkinstalldirs=$(mkinstalldirs)" \
272 "tmac_wrap=$(tmac_wrap)" \
273 "sys_tmac_prefix=$(sys_tmac_prefix)" \
274 "tmac_an_prefix=$(tmac_an_prefix)" \
275 "tmac_s_prefix=$(tmac_s_prefix)" \
276 "tmac_m_prefix=$(tmac_m_prefix)" \
279 "CCDEFINES=$(CCDEFINES)" \
280 "CDEFINES=$(CDEFINES)" \
281 "CCFLAGS=$(CCFLAGS)" \
283 "LDFLAGS=$(LDFLAGS)" \
285 "YACCFLAGS=$(YACCFLAGS)" \
288 "LIBOBJS=$(LIBOBJS)" \
291 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
292 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
293 "INSTALL_DATA=$(INSTALL_DATA)" \
295 "ETAGSFLAGS=$(ETAGSFLAGS)" \
296 "ETAGSCCFLAG=$(ETAGSCCFLAG)" \
297 "PERLPATH=$(PERLPATH)" \
298 "SH_SCRIPT_SED_CMD=$(SH_SCRIPT_SED_CMD)" \
300 "PURIFYCCFLAGS=$(PURIFYCCFLAGS)"
321 src
/devices
/grohtml \
329 CPROGDIRS
=src
/utils
/pfbtops
330 PROGDIRS
=$(CCPROGDIRS
) $(CPROGDIRS
)
350 ALLDIRS
=$(INCDIRS
) $(LIBDIRS
) $(PROGDIRS
) $(DEVDIRS
) $(OTHERDIRS
)
352 fonts
/devps
/generate \
353 fonts
/devdvi
/generate \
356 DISTDIRS
=$(ALLDIRS
) $(EXTRADIRS
)
357 TARGETS
=all install install_bin
install_data clean distclean mostlyclean \
358 realclean extraclean distfiles TAGS depend uninstall_sub
361 dodirs
=$(ALLDIRS
) dot
362 # Default target for subdir_Makefile
363 subdir
=src
/roff
/troff
367 @
$(MAKE
) $(MDEFINES
) do
=$@
$(dodirs
)
370 @
$(MAKE
) $(MDEFINES
) srcdir=$(srcdir) VPATH
=$(srcdir) \
371 -f
$(top_srcdir
)/Makefile.comm \
372 -f
$(top_srcdir
)/Makefile.sub
$(do
)
375 @if
test $(srcdir) = .
; \
377 else srcdir=`cd $(srcdir); pwd`/$@
; \
379 test -d
$@ ||
$(mkinstalldirs
) $@
; \
381 test -f Makefile.dep || touch Makefile.dep
; \
382 $(MAKE
) $(MDEFINES
) srcdir=$$srcdir VPATH
=$$srcdir \
383 -f
$(top_srcdir
)/Makefile.comm \
384 -f
$$srcdir/Makefile.sub \
385 -f
$(top_srcdir
)/Makefile.lib \
386 -f Makefile.dep
$(do
)
389 @if
test $(srcdir) = .
; \
391 else srcdir=`cd $(srcdir); pwd`/$@
; \
393 test -d
$@ ||
$(mkinstalldirs
) $@
; \
395 test -f Makefile.dep || touch Makefile.dep
; \
396 $(MAKE
) $(MDEFINES
) srcdir=$$srcdir VPATH
=$$srcdir \
397 -f
$(top_srcdir
)/Makefile.comm \
398 -f
$$srcdir/Makefile.sub \
399 -f
$(top_srcdir
)/Makefile.cpg \
400 -f Makefile.dep
$(do
)
403 @if
test $(srcdir) = .
; \
405 else srcdir=`cd $(srcdir); pwd`/$@
; \
407 test -d
$@ ||
$(mkinstalldirs
) $@
; \
409 test -f Makefile.dep || touch Makefile.dep
; \
410 $(MAKE
) $(MDEFINES
) srcdir=$$srcdir VPATH
=$$srcdir \
411 -f
$(top_srcdir
)/Makefile.comm \
412 -f
$$srcdir/Makefile.sub \
413 -f
$(top_srcdir
)/Makefile.ccpg \
414 -f Makefile.dep
$(do
)
417 @if
test $(srcdir) = .
; \
419 else srcdir=`cd $(srcdir); pwd`/$@
; \
421 test -d
$@ ||
$(mkinstalldirs
) $@
; \
423 $(MAKE
) $(MDEFINES
) srcdir=$$srcdir VPATH
=$$srcdir \
424 -f
$(top_srcdir
)/Makefile.comm \
425 -f
$$srcdir/Makefile.sub \
426 -f
$(top_srcdir
)/Makefile.dev
$(do
)
428 $(INCDIRS
) $(OTHERDIRS
): FORCE
429 @if
test $(srcdir) = .
; \
431 else srcdir=`cd $(srcdir); pwd`/$@
; \
433 test -d
$@ ||
$(mkinstalldirs
) $@
; \
435 $(MAKE
) $(MDEFINES
) srcdir=$$srcdir VPATH
=$$srcdir \
436 -f
$(top_srcdir
)/Makefile.comm \
437 -f
$$srcdir/Makefile.sub \
438 -f
$(top_srcdir
)/Makefile.man
$(do
)
440 version
=`cat $(top_srcdir)/VERSION`
441 # No additional number for the groff archive if revision is zero
442 revision
=`sed -e 's/^0$$//' -e 's/^[1-9].*$$/.&/' $(top_srcdir)/REVISION`
448 for d in
$(DISTDIRS
); do \
449 $(mkinstalldirs
) tmp
/$$d; \
451 srcdir=`cd $(srcdir); pwd`; \
453 $(LN_S
) ..
/Makefile .
; \
454 $(LN_S
) $$srcdir/* .
2>/dev
/null || true
; \
455 for d in
$(DISTDIRS
); do \
456 (cd
$$d; $(LN_S
) $$srcdir/$$d/* .
2>/dev
/null || true
); \
458 $(MAKE
) srcdir=$$srcdir VPATH
=$$srcdir extraclean
; \
459 for d in
$(EXTRADIRS
); do \
460 (cd
$$d; $(MAKE
) extraclean
); \
463 $(LN_S
) $$srcdir/Makefile.init Makefile
464 mv tmp groff-
$(version
)$(revision
)
465 rm -f groff-
$(version
)$(revision
).
tar.gz
466 tar cfh
- groff-
$(version
)$(revision
) | \
467 gzip
-c
>groff-
$(version
)$(revision
).
tar.gz
468 rm -fr groff-
$(version
)$(revision
)
470 # $(PROGDIRS): libgroff
471 # grops grotty grodvi: libdriver
472 # refer lookbib indxbib lkbib: libbib
473 # $(LIBDIRS) $(PROGDIRS): include
475 .PHONY
: $(ALLDIRS
) dot
$(TARGETS
) FORCE
477 subdir_Makefile
: Makefile.cfg
478 $(MAKE
) do
=Makefile
$(subdir
)
480 Makefile.cfg
: Makefile
482 for var in
$(MDEFINES
); do \
483 echo
"$$var" >>Makefile.cfg
; \
486 Makefile
: Makefile.in
487 $(SHELL
) config.status
490 uninstall: uninstall_sub uninstall_dirs
492 .PHONY
: uninstall_dirs
494 # Use rmdir here so that the directories are only removed if they're empty
495 -rmdir
$(man1dir) $(man5dir) $(man7dir) $(manroot
) \
496 $(tmacdir
) $(fontdir
) $(bindir) $(datasubdir
) $(datadir)