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.
21 top_srcdir
=@top_srcdir@
23 top_builddir
=@top_builddir@
25 version
=`cat $(top_srcdir)/VERSION`
26 # No additional number if revision is zero
27 revision
=`sed -e 's/^0$$//' -e 's/^[1-9].*$$/.&/' $(top_srcdir)/REVISION`
29 # Define `page' to be letter if your PostScript printer uses 8.5x11
30 # paper (USA) and define it to be A4, if it uses A4 paper (rest of the
34 # Normally the Postscript driver, grops, produces output that conforms
35 # to version 3.0 of the Adobe Document Structuring Conventions.
36 # Unfortunately some spoolers and previewers can't handle such output.
37 # The BROKEN_SPOOLER_FLAGS variable tells grops what it should do to
38 # make its output acceptable to such programs. This variable controls
39 # only the default behaviour of grops; the behaviour can be changed at
40 # runtime by the grops -b option (and so by groff -P-b).
41 # Use a value of 0 if your spoolers and previewers are able to handle
42 # conforming PostScript correctly.
43 # Add 1 if no %%{Begin,End}DocumentSetup comments should be generated;
44 # this is needed for early versions of TranScript that get confused by
45 # anything between the %%EndProlog line and the first %%Page: comment.
46 # Add 2 if lines in included files beginning with %! should be
47 # stripped out; this is needed for the OpenWindows 2.0 pageview previewer.
48 # Add 4 if %%Page, %%Trailer and %%EndProlog comments should be
49 # stripped out of included files; this is needed for spoolers that
50 # don't understand the %%{Begin,End}Document comments. I suspect this
51 # includes early versions of TranScript.
52 # Add 8 if the first line of the PostScript output should be %!PS-Adobe-2.0
53 # rather than %!PS-Adobe-3.0; this is needed when using Sun's Newsprint
54 # with a printer that requires page reversal.
55 BROKEN_SPOOLER_FLAGS
=@BROKEN_SPOOLER_FLAGS@
57 # DEVICE is the default device.
60 # TTYDEVDIRS is either `font/devascii font/devlatin1 font/devutf8' (for
61 # ASCII) or `font/devcp1047' (for EBCDIC).
62 TTYDEVDIRS
=@TTYDEVDIRS@
64 # PSPRINT is the command to use for printing a PostScript file,
68 # DVIPRINT is the command to use for printing a TeX dvi file,
69 # for example `lpr -d'.
72 # Prefix for names of programs that have Unix counterparts.
73 # For example, if `g' is `g' then troff will be installed as
74 # gtroff. This doesn't affect programs like grops or groff that have
75 # no Unix counterparts. Note that the groff versions of eqn and tbl
76 # will not work with Unix troff.
79 # Common prefix for installation directories.
80 # Used in definitions of exec_prefix, datasubdir, fontpath, manroot.
81 # This must already exist when you do make install.
83 exec_prefix=@
exec_prefix@
85 # bindir says where to install executables.
88 # libdir says where to install platform-dependent data
90 libprogramdir
=$(libdir)/groff
92 # datasubdir says where to install platform-independent data files
94 dataprogramdir
=$(datadir)/groff
95 datasubdir
=$(dataprogramdir
)/$(version
)$(revision
)
97 # fontdir says where to install dev*/*.
98 fontdir
=$(datasubdir
)/font
100 # fontpath says where to look for dev*/*.
101 fontpath
=$(fontdir
):/usr
/lib
/font
103 # tmacdir says where to install macros.
104 tmacdir
=$(datasubdir
)/tmac
106 # systemtmacdir says where to install platform-dependent macros
107 systemtmacdir
=$(libprogramdir
)/site-tmac
109 # localtmacdir says where local files will be installed
110 localtmacdir
=$(dataprogramdir
)/site-tmac
112 # tmacpath says where to look for macro files.
113 # The current directory will be prepended in unsafe mode only; the home
114 # directory will be always added.
115 # `troffrc' and `troffrc-end' (and `eqnrc' are searched neither in the
116 # current nor in the home directory.
117 tmacpath
=$(systemtmacdir
):$(localtmacdir
):$(tmacdir
)
119 # sys_tmac_prefix is prefix (if any) for system macro packages
120 sys_tmac_prefix
=@sys_tmac_prefix@
122 # tmac_wrap is list of system macro packages that should be made
123 # available to groff by creating a corresponding macro package
124 # in the groff macro directory that references the system macro
126 tmac_wrap
=@tmac_wrap@
128 # If there is a groff version of a macro package listed in $(tmac_wrap),
129 # then the groff version will be installed with a prefix of this.
130 # Don't make this empty.
133 # The groff -mm macros will be available as -m$(tmac_m_prefix)m.
135 `for i in $(tmac_wrap) ""; do case "$$i" in m) echo $(tmac_prefix);; esac; done`
136 # The groff -ms macros will be available as -m$(tmac_s_prefix)s.
138 `for i in $(tmac_wrap) ""; do case "$$i" in s) echo $(tmac_prefix);; esac; done`
139 # The groff -man macros will be available as -m$(tmac_an_prefix)an.
141 `for i in $(tmac_wrap) ""; do case "$$i" in an) echo $(tmac_prefix);; esac; done`
143 # Extension to be used for refer index files. Index files are not
144 # sharable between different architectures, so you might want to use
145 # different suffixes for different architectures. Choose an extension
146 # that doesn't conflict with refer or any other indexing program.
149 # Directory containing the default index for refer.
150 indexdir
=/usr
/dict
/papers
152 # The filename (without suffix) of the default index for refer.
155 # common_words_file is a file containing a list of common words.
156 # If your system provides /usr/lib/eign it will be copied onto this,
157 # otherwise the supplied eign file will be used.
158 common_words_file
=$(datasubdir
)/eign
160 # manroot is the root of the man page directory tree.
163 # man1ext is the man section for user commands.
165 man1dir=$(manroot
)/man
$(man1ext)
167 # man5ext is the man section for file formats.
169 man5dir=$(manroot
)/man
$(man5ext)
171 # man7ext is the man section for macros.
173 man7dir=$(manroot
)/man
$(man7ext)
175 # DEFINES should include the following:
176 # -DHAVE_MMAP if you have mmap() and <sys/mman.h>
177 # -DARRAY_DELETE_NEEDS_SIZE if your C++ doesn't understand `delete []'
178 # -DHAVE_SYS_SIGLIST if you have sys_siglist[]
179 # -DWCOREFLAG=0200 if the 0200 bit of the status returned by
180 # wait() indicates whether a core image was
181 # produced for a process that was terminated
183 # -DHAVE_UNISTD_H if you have <unistd.h>
184 # -DHAVE_CC_OSFCN_H if you have a C++ <osfcn.h>
185 # -DHAVE_DIRENT_H if you have <dirent.h>
186 # -DHAVE_LIMITS_H if you have <limits.h>
187 # -DHAVE_CC_LIMITS_H if you have a C++ <limits.h>
188 # -DHAVE_SYS_DIR_H if you have <sys/dir.h>
189 # -DHAVE_STDLIB_H if you have <stdlib.h>
190 # -DHAVE_STRINGS_H if you have <strings.h>
191 # -DHAVE_RENAME if you have rename()
192 # -DHAVE_MKSTEMP if you have mkstemp()
193 # -DHAVE_STRDUP if you have strdup()
194 # -DHAVE_STRSEP if you have strsep()
195 # -DHAVE_STRCASECMP if you have strcasecmp()
196 # -DNEED_DECLARATION_HYPOT if your C++ <math.h> doesn't declare hypot()
197 # -DNEED_DECLARATION_PUTENV if your C++ <stdlib.h> doesn't declare putenv()
198 # -DNEED_DECLARATION_POPEN if your C++ <stdio.h> doesn't declare popen()
199 # -DNEED_DECLARATION_PCLOSE if your C++ <stdio.h> doesn't declare pclose()
200 # -DNEED_DECLARATION_STRNCASECMP
201 # if your C++ <string.h> doesn't declare
203 # -DRET_TYPE_SRAND_IS_VOID if your srand() returns void or int
204 # -DHAVE_SYS_NERR if you have sysnerr in <errno.h> or <stdio.h>
205 # -DHAVE_SYS_ERRLIST if you have sys_errlist in <errno.h> or
207 # -DTRADITIONAL_CPP if your C++ compiler uses a traditional
208 # (Reiser) preprocessor
209 # -DLONG_FOR_TIME_T if localtime() takes a long * not a time_t *
210 # -DHAVE_STRUCT_EXCEPTION if <math.h> defines struct exception
211 # -DRETSIGTYPE=int if signal handlers return int not void
212 # -DIS_EBCDIC_HOST if the host's encoding is EBCDIC
215 # Include fmod.o, strtol.o, getcwd.o, strerror.o, putenv.o in LIBOBJS if
216 # your C library is missing the corresponding function.
219 # CCC is the compiler for C++ (.cc) files.
222 # CCDEFINES are definitions for C++ compilations.
224 # CDEFINES are definitions for C compilations.
237 INSTALL_PROGRAM
=@INSTALL_PROGRAM@
238 INSTALL_SCRIPT
=@INSTALL_SCRIPT@
239 INSTALL_DATA
=@INSTALL_DATA@
244 # Flag that tells etags to assume C++.
248 # Sed command with which to edit sh scripts.
249 SH_SCRIPT_SED_CMD
=@SH_SCRIPT_SED_CMD@
251 # the program to create directory hierarchies
252 mkinstalldirs
=$(top_srcdir
)/mkinstalldirs
256 #PURIFYCCFLAGS=-g++=yes \
257 # -collector=`dirname \`$(CCC) -print-libgcc-file-name\``/ld
259 # Passing down MAKEOVERRIDES prevents $(MAKE) from containing a second
260 # copy of $(MDEFINES) when making individual directories; this could
261 # cause the argument list to become too long on some systems.
263 "MAKEOVERRIDES=$(MAKEOVERRIDES)" \
265 "BROKEN_SPOOLER_FLAGS=$(BROKEN_SPOOLER_FLAGS)" \
267 "TTYDEVDIRS=$(TTYDEVDIRS)" \
268 "PSPRINT=$(PSPRINT)" \
269 "DVIPRINT=$(DVIPRINT)" \
270 "top_srcdir=$(top_srcdir)" \
271 "top_builddir=$(top_builddir)" \
273 "exec_prefix=$(exec_prefix)" \
275 "datadir=$(datadir)" \
276 "dataprogramdir=$(dataprogramdir)" \
277 "datasubdir=$(datasubdir)" \
279 "libprogramdir=$(libprogramdir)" \
281 "fontdir=$(fontdir)" \
282 "fontpath=$(fontpath)" \
283 "tmacdir=$(tmacdir)" \
284 "systemtmacdir=$(systemtmacdir)" \
285 "localtmacdir=$(localtmacdir)" \
286 "tmacpath=$(tmacpath)" \
287 "indexext=$(indexext)" \
288 "indexdir=$(indexdir)" \
289 "indexname=$(indexname)" \
290 "common_words_file=$(common_words_file)" \
291 "manroot=$(manroot)" \
292 "man1ext=$(man1ext)" \
293 "man1dir=$(man1dir)" \
294 "man5ext=$(man5ext)" \
295 "man5dir=$(man5dir)" \
296 "man7ext=$(man7ext)" \
297 "man7dir=$(man7dir)" \
298 "mkinstalldirs=$(mkinstalldirs)" \
299 "tmac_wrap=$(tmac_wrap)" \
300 "sys_tmac_prefix=$(sys_tmac_prefix)" \
301 "tmac_an_prefix=$(tmac_an_prefix)" \
302 "tmac_s_prefix=$(tmac_s_prefix)" \
303 "tmac_m_prefix=$(tmac_m_prefix)" \
306 "CCDEFINES=$(CCDEFINES)" \
307 "CDEFINES=$(CDEFINES)" \
308 "CCFLAGS=$(CCFLAGS)" \
310 "LDFLAGS=$(LDFLAGS)" \
312 "YACCFLAGS=$(YACCFLAGS)" \
315 "LIBOBJS=$(LIBOBJS)" \
318 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
319 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
320 "INSTALL_DATA=$(INSTALL_DATA)" \
322 "ETAGSFLAGS=$(ETAGSFLAGS)" \
323 "ETAGSCCFLAG=$(ETAGSCCFLAG)" \
324 "PERLPATH=$(PERLPATH)" \
325 "SH_SCRIPT_SED_CMD=$(SH_SCRIPT_SED_CMD)" \
327 "PURIFYCCFLAGS=$(PURIFYCCFLAGS)"
349 src
/devices
/grohtml \
350 src
/devices
/grohtml2 \
358 CPROGDIRS
=src
/utils
/pfbtops
359 PROGDIRS
=$(CCPROGDIRS
) $(CPROGDIRS
)
383 ALLDIRS
=$(INCDIRS
) $(LIBDIRS
) $(PROGDIRS
) \
384 $(DEVDIRS
) $(TTYDEVDIRS
) $(OTHERDIRS
)
386 font
/devps
/generate \
387 font
/devdvi
/generate \
390 DISTDIRS
=$(INCDIRS
) $(LIBDIRS
) $(PROGDIRS
) \
391 $(DEVDIRS
) $(ALLTTYDEVDIRS
) $(OTHERDIRS
) $(EXTRADIRS
)
392 TARGETS
=all install install_bin
install_data clean distclean mostlyclean \
393 realclean extraclean distfiles TAGS depend uninstall_sub
395 # This ENVSETUP gork is required by the DJGPP build on Windows 9X,
396 # where Make needs to be case-sensitive to find files like BI and VERSION.
398 if
test -f
$(srcdir)/makefile.ccpg
* && \
399 test -f
$(srcdir)/Makefile.ccpg
*; \
400 then FNCASE
=y
; export FNCASE
; \
405 dodirs
=$(ALLDIRS
) dot
406 # Default target for subdir_Makefile
407 subdir
=src
/roff
/troff
411 @
$(ENVSETUP
); $(MAKE
) $(MDEFINES
) do
=$@
$(dodirs
)
415 $(MAKE
) $(MDEFINES
) srcdir=$(srcdir) VPATH
=$(srcdir) \
416 -f
$(top_srcdir
)/Makefile.comm \
417 -f
$(top_srcdir
)/Makefile.sub
$(do
)
421 if
test $(srcdir) = .
; \
423 else srcdir=`cd $(srcdir); pwd`/$@
; \
425 test -d
$@ ||
$(mkinstalldirs
) $@
; \
427 test -f Makefile.dep || touch Makefile.dep
; \
428 $(MAKE
) $(MDEFINES
) srcdir=$$srcdir VPATH
=$$srcdir \
429 -f
$(top_srcdir
)/Makefile.comm \
430 -f
$$srcdir/Makefile.sub \
431 -f
$(top_srcdir
)/Makefile.lib \
432 -f Makefile.dep
$(do
)
436 if
test $(srcdir) = .
; \
438 else srcdir=`cd $(srcdir); pwd`/$@
; \
440 test -d
$@ ||
$(mkinstalldirs
) $@
; \
442 test -f Makefile.dep || touch Makefile.dep
; \
443 $(MAKE
) $(MDEFINES
) srcdir=$$srcdir VPATH
=$$srcdir \
444 -f
$(top_srcdir
)/Makefile.comm \
445 -f
$$srcdir/Makefile.sub \
446 -f
$(top_srcdir
)/Makefile.cpg \
447 -f Makefile.dep
$(do
)
451 if
test $(srcdir) = .
; \
453 else srcdir=`cd $(srcdir); pwd`/$@
; \
455 test -d
$@ ||
$(mkinstalldirs
) $@
; \
457 test -f Makefile.dep || touch Makefile.dep
; \
458 $(MAKE
) $(MDEFINES
) srcdir=$$srcdir VPATH
=$$srcdir \
459 -f
$(top_srcdir
)/Makefile.comm \
460 -f
$$srcdir/Makefile.sub \
461 -f
$(top_srcdir
)/Makefile.ccpg \
462 -f Makefile.dep
$(do
)
464 $(DEVDIRS
) $(TTYDEVDIRS
): FORCE
466 if
test $(srcdir) = .
; \
468 else srcdir=`cd $(srcdir); pwd`/$@
; \
470 test -d
$@ ||
$(mkinstalldirs
) $@
; \
472 $(MAKE
) $(MDEFINES
) srcdir=$$srcdir VPATH
=$$srcdir \
473 -f
$(top_srcdir
)/Makefile.comm \
474 -f
$$srcdir/Makefile.sub \
475 -f
$(top_srcdir
)/Makefile.dev
$(do
)
477 $(INCDIRS
) $(OTHERDIRS
): FORCE
479 if
test $(srcdir) = .
; \
481 else srcdir=`cd $(srcdir); pwd`/$@
; \
483 test -d
$@ ||
$(mkinstalldirs
) $@
; \
485 $(MAKE
) $(MDEFINES
) srcdir=$$srcdir VPATH
=$$srcdir \
486 -f
$(top_srcdir
)/Makefile.comm \
487 -f
$$srcdir/Makefile.sub \
488 -f
$(top_srcdir
)/Makefile.man
$(do
)
493 rm -f groff-
$(version
)$(revision
).
tar.gz
494 rm -f src
/xditview
/Imakefile
;
496 for d in
$(DISTDIRS
); do \
497 $(mkinstalldirs
) tmp
/$$d; \
499 srcdir=`cd $(srcdir); pwd`; \
501 $(LN_S
) ..
/Makefile .
; \
502 $(LN_S
) $$srcdir/* .
2>/dev
/null || true
; \
503 for d in
$(DISTDIRS
); do \
504 (cd
$$d; $(LN_S
) $$srcdir/$$d/* .
2>/dev
/null || true
); \
506 $(MAKE
) srcdir=$$srcdir VPATH
=$$srcdir extraclean
; \
507 for d in
$(EXTRADIRS
); do \
508 (cd
$$d; $(MAKE
) extraclean
); \
511 $(LN_S
) $$srcdir/Makefile.init Makefile
512 mv tmp groff-
$(version
)$(revision
)
513 tar cfh
- groff-
$(version
)$(revision
) | \
514 gzip
-c
>groff-
$(version
)$(revision
).
tar.gz
515 rm -fr groff-
$(version
)$(revision
)
517 # $(PROGDIRS): libgroff
518 # grops grotty grodvi: libdriver
519 # refer lookbib indxbib lkbib: libbib
520 # $(LIBDIRS) $(PROGDIRS): include
522 .PHONY
: $(ALLDIRS
) dot
$(TARGETS
) FORCE
524 subdir_Makefile
: Makefile.cfg
525 $(MAKE
) do
=Makefile
$(subdir
)
527 Makefile.cfg
: Makefile
529 for var in
$(MDEFINES
); do \
530 echo
"$$var" >>Makefile.cfg
; \
533 Makefile
: Makefile.in
534 $(SHELL
) config.status
537 uninstall: uninstall_sub uninstall_dirs
539 .PHONY
: uninstall_dirs
541 # Use rmdir here so that the directories are only removed if they're empty
542 -rmdir
$(man1dir) $(man5dir) $(man7dir) $(manroot
) \
543 $(tmacdir
) $(systemtmacdir
) $(localtmacdir
) $(fontdir
) $(bindir) \
544 $(datasubdir
) $(dataprogramdir
) $(datadir) \
545 $(libprogramdir
) $(libdir)