1 # Copyright (C) 1989-2000, 2001, 2002, 2003, 2004, 2005, 2006
2 # Free Software Foundation, Inc.
3 # Written by James Clark (jjc@jclark.com)
5 # This file is part of groff.
7 # groff is free software; you can redistribute it and/or modify it under
8 # the terms of the GNU General Public License as published by the Free
9 # Software Foundation; either version 2, or (at your option) any later
12 # groff is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 # You should have received a copy of the GNU General Public License along
18 # with groff; see the file COPYING. If not, write to the Free Software
19 # Foundation, 51 Franklin St - Fifth Floor, Boston, MA 02110-1301, USA.
26 top_srcdir
=@abs_top_srcdir@
28 top_builddir
=@abs_top_builddir@
30 # `HOST' is the canonical host specification,
31 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
33 # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
36 # `RT_SEP' is the operating system's native PATH SEPARATOR CHAR, which
37 # is to be used in runtime PATHs compiled into groff executables.
38 RT_SEP
=@GROFF_PATH_SEPARATOR@
40 # `SH_SEP' is a alternative PATH SEPARATOR CHAR, to be used in shell
41 # scripts and makefile rules; it may be the same as `RT_SEP', but,
42 # particularly in some Microsoft environments, it may differ.
43 SH_SEP
=@PATH_SEPARATOR@
45 # `GLIBC21' is yes if the host operating system uses GNU libc 2.1 or newer,
49 version
=`cat $(top_srcdir)/VERSION`
50 # No additional number if revision is zero.
51 revision
=`sed -e 's/^0$$//' -e 's/^[1-9].*$$/.&/' $(top_srcdir)/REVISION`
53 # Define `page' to be letter if your PostScript printer uses 8.5x11
54 # paper (USA) and define it to be A4, if it uses A4 paper (rest of the
58 # The name of the ghostscript program. Normally, gs, on GNU/Linux
59 # but it might be different on MS-DOS/MS-WIN32 systems.
60 GHOSTSCRIPT
=@GHOSTSCRIPT@
62 # `ALT_GHOSTSCRIPT_PROGS' specifies a list alternative names,
63 # which can be tried if `GHOSTSCRIPT' cannot be found at run time.
64 ALT_GHOSTSCRIPT_PROGS
=@ALT_GHOSTSCRIPT_PROGS@
66 # Similarly, `ALT_AWK_PROGS' specifies a list of alternative names,
67 # which can be tried at run time, to identify the awk program.
68 ALT_AWK_PROGS
=@ALT_AWK_PROGS@
70 # Normally the Postscript driver, grops, produces output that conforms
71 # to version 3.0 of the Adobe Document Structuring Conventions.
72 # Unfortunately some spoolers and previewers can't handle such output.
73 # The BROKEN_SPOOLER_FLAGS variable tells grops what it should do to
74 # make its output acceptable to such programs. This variable controls
75 # only the default behaviour of grops; the behaviour can be changed at
76 # runtime by the grops -b option (and so by groff -P-b).
77 # Use a value of 0 if your spoolers and previewers are able to handle
78 # conforming PostScript correctly.
79 # Add 1 if no %%{Begin,End}DocumentSetup comments should be generated;
80 # this is needed for early versions of TranScript that get confused by
81 # anything between the %%EndProlog line and the first %%Page: comment.
82 # Add 2 if lines in included files beginning with %! should be
83 # stripped out; this is needed for the OpenWindows 2.0 pageview previewer.
84 # Add 4 if %%Page, %%Trailer and %%EndProlog comments should be
85 # stripped out of included files; this is needed for spoolers that
86 # don't understand the %%{Begin,End}Document comments. I suspect this
87 # includes early versions of TranScript.
88 # Add 8 if the first line of the PostScript output should be %!PS-Adobe-2.0
89 # rather than %!PS-Adobe-3.0; this is needed when using Sun's Newsprint
90 # with a printer that requires page reversal.
91 BROKEN_SPOOLER_FLAGS
=@BROKEN_SPOOLER_FLAGS@
93 # `DEVICE' is the default device.
96 # `XDEVDIRS' is either `font/devX{75,100}{,-12}' or empty.
99 # `XPROGDIRS' is either `src/devices/xditview src/utils/xtotroff' or empty.
100 XPROGDIRS
=@XPROGDIRS@
102 # `XLIBDIRS' is either `src/libs/libxutil' or empty.
105 # `TTYDEVDIRS' is either `font/devascii font/devlatin1' (for
106 # ASCII) or `font/devcp1047' (for EBCDIC) plus font/devutf8.
107 TTYDEVDIRS
=@TTYDEVDIRS@ font
/devutf8
109 # `OTHERDEVDIRS' is either `font/devlj4 font/devlbp' (for ASCII) or
110 # empty (for EBCDIC).
111 OTHERDEVDIRS
=@OTHERDEVDIRS@
113 # `PSPRINT' is the command to use for printing a PostScript file,
117 # `DVIPRINT' is the command to use for printing a TeX dvi file,
118 # for example `lpr -d'.
121 # Prefix for names of programs that have Unix counterparts.
122 # For example, if `g' is `g' then troff will be installed as
123 # gtroff. This doesn't affect programs like grops or groff that have
124 # no Unix counterparts. Note that the groff versions of eqn and tbl
125 # will not work with Unix troff.
128 # Common prefix for installation directories.
129 # Used in definitions of exec_prefix, datasubdir, fontpath, manroot.
130 # This must already exist when you do make install.
132 exec_prefix=@
exec_prefix@
134 # `bindir' says where to install executables.
137 # `libdir' says where to install platform-dependent data.
139 libprogramdir
=$(libdir)/groff
141 # `datasubdir' says where to install platform-independent data files.
143 dataprogramdir
=$(datadir)/groff
144 datasubdir
=$(dataprogramdir
)/$(version
)$(revision
)
146 # `infodir' says where to install info files.
149 # `docdir' says where to install documentation files.
150 docdir
=$(datadir)/doc
/groff
/$(version
)$(revision
)
152 # `exampledir' says where to install example files.
153 exampledir
=$(docdir
)/examples
155 # `htmldocdir' says where to install documentation in HTML format.
156 htmldocdir
=$(docdir
)/html
158 # `pdfdocdir' says where to install documentation in PDF format.
159 pdfdocdir
=$(docdir
)/pdf
161 # `fontdir' says where to install dev*/*.
162 fontdir
=$(datasubdir
)/font
164 # `oldfontdir' says where to install old font sets (as dev*/*).
165 oldfontdir
=$(datasubdir
)/oldfont
167 # `localfontdir' says where local fonts will be installed (as dev*/*).
168 localfontdir
=$(dataprogramdir
)/site-font
170 # `legacyfontdir' is for compatibility with non-GNU troff.
171 legacyfontdir
=/usr
/lib
/font
173 # `fontpath' says where to look for dev*/*.
174 fontpath
=$(localfontdir
)$(RT_SEP
)$(fontdir
)$(RT_SEP
)$(legacyfontdir
)
176 # `tmacdir' says where to install macros.
177 tmacdir
=$(datasubdir
)/tmac
179 # `systemtmacdir' says where to install platform-dependent macros.
180 systemtmacdir
=$(libprogramdir
)/site-tmac
182 # `localtmacdir' says where local files will be installed.
183 localtmacdir
=$(dataprogramdir
)/site-tmac
185 # `appresdir' says where to install the application resource file for
187 appresdir
=@appresdir@
189 # `tmacpath' says where to look for macro files.
190 # The current directory will be prepended in unsafe mode only; the home
191 # directory will be always added.
192 # `troffrc' and `troffrc-end' (and `eqnrc') are searched neither in the
193 # current nor in the home directory.
194 tmacpath
=$(systemtmacdir
)$(RT_SEP
)$(localtmacdir
)$(RT_SEP
)$(tmacdir
)
196 # `sys_tmac_prefix' is prefix (if any) for system macro packages.
197 sys_tmac_prefix
=@sys_tmac_prefix@
199 # `pnmtops_nosetpage' is the command to be run to generate an eps
200 # file. Some versions of pnmtops provide the -nosetpage option.
201 # We detect this and use it if present.
202 pnmtops_nosetpage
=@pnmtops_nosetpage@
204 # `tmac_wrap' is list of system macro packages that should be made
205 # available to groff by creating a corresponding macro package
206 # in the groff macro directory that references the system macro
208 tmac_wrap
=@tmac_wrap@
210 # If there is a groff version of a macro package listed in $(tmac_wrap),
211 # then the groff version will be installed with a prefix of this.
212 # Don't make this empty.
215 # The groff -mm macros will be available as -m$(tmac_m_prefix)m.
217 `for i in $(tmac_wrap) ""; do case "$$i" in m) echo $(tmac_prefix);; esac; done`
218 # The groff -ms macros will be available as -m$(tmac_s_prefix)s.
220 `for i in $(tmac_wrap) ""; do case "$$i" in s) echo $(tmac_prefix);; esac; done`
221 # The groff -man macros will be available as -m$(tmac_an_prefix)an.
223 `for i in $(tmac_wrap) ""; do case "$$i" in an) echo $(tmac_prefix);; esac; done`
225 # Extension to be used for refer index files. Index files are not
226 # sharable between different architectures, so you might want to use
227 # different suffixes for different architectures. Choose an extension
228 # that doesn't conflict with refer or any other indexing program.
231 # Directory containing the default index for refer.
232 indexdir
=/usr
/dict
/papers
234 # The filename (without suffix) of the default index for refer.
237 # common_words_file is a file containing a list of common words.
238 # If your system provides /usr/lib/eign it will be copied onto this,
239 # otherwise the supplied eign file will be used.
240 common_words_file
=$(datasubdir
)/eign
242 # `manroot' is the root of the man page directory tree.
246 # `man1ext' is the man section for user commands.
248 man1dir=$(manroot
)/man
$(man1ext)
250 # `man5ext' is the man section for file formats.
252 man5dir=$(manroot
)/man
$(man5ext)
254 # `man7ext' is the man section for macros.
256 man7dir=$(manroot
)/man
$(man7ext)
258 # The configure script checks whether all necessary utility programs for
259 # grohtml are available -- only then we can build the HTML documentation.
260 make_html
=@make_html@
261 make_install_html
=@make_install_html@
263 # The configure script also checks whether all necessary utility programs
264 # for pdfroff are available -- only then we can build PDF documentation.
265 make_pdfdoc
=@make_pdfdoc@
266 make_install_pdfdoc
=@make_install_pdfdoc@
268 # All the previous installation directories, when used, are prefixed with
269 # $(DESTDIR) during install and uninstall, to support staged installations.
271 # DEFINES should include the following:
273 # -DWORDS_BIGENDIAN if your target platform is big-endian
274 # -DIS_EBCDIC_HOST if the host's encoding is EBCDIC
276 # -DHAVE_DIRECT_H if you have <direct.h>
277 # -DHAVE_DIRENT_H if you have <dirent.h>
278 # -DHAVE_CC_INTTYPES_H if you have a C++ <inttypes.h>
279 # -DHAVE_PROCESS_H if you have <process.h>
280 # -DHAVE_LIMITS_H if you have <limits.h>
281 # -DHAVE_CC_LIMITS_H if you have a C++ <limits.h>
282 # -DHAVE_MATH_H if you have <math.h>
283 # -DHAVE_CC_OSFCN_H if you have a C++ <osfcn.h>
284 # -DHAVE_STDDEF_H if you have <stddef.h>
285 # -DHAVE_STDLIB_H if you have <stdlib.h>
286 # -DHAVE_STRING_H if you have <string.h>
287 # -DHAVE_STRINGS_H if you have <strings.h>
288 # -DHAVE_SYS_DIR_H if you have <sys/dir.h>
289 # -DHAVE_SYS_STAT_H if you have <sys/stat.h>
290 # -DHAVE_SYS_TIME_H if you have <sys/time.h>
291 # -DHAVE_SYS_TYPES_H if you have <sys/types.h>
292 # -DHAVE_UNISTD_H if you have <unistd.h>
294 # -DHAVE_FMOD if you have fmod()
295 # -DHAVE_GETCWD if you have getcwd()
296 # -DHAVE_GETTIMEOFDAY if you have gettimeofday()
297 # -DHAVE_ICONV if you have iconv()
298 # -DHAVE_ISATTY if you have isatty()
299 # -DHAVE_KILL if you have kill()
300 # -DHAVE_LANGINFO_CODESET if you have nl_langinfo()
301 # -DHAVE_MKSTEMP if you have mkstemp()
302 # -DHAVE_MMAP if you have mmap()
303 # -DHAVE_PUTENV if you have putenv()
304 # -DHAVE_RENAME if you have rename()
305 # -DHAVE_SETLOCALE if you have setlocale()
306 # -DHAVE_SNPRINTF if you have snprintf()
307 # -DHAVE_STRCASECMP if you have strcasecmp()
308 # -DHAVE_STRNCASECMP if you have strncasecmp()
309 # -DHAVE_STRERROR if you have strerror()
310 # -DHAVE_STRSEP if you have strsep()
311 # -DHAVE_STRTOL if you have strtol()
312 # -DHAVE_VSNPRINTF if you have vsnprintf()
314 # -DNEED_DECLARATION_GETTIMEOFTODAY
315 # if your C++ <sys/time.h> doesn't declare
317 # -DNEED_DECLARATION_HYPOT if your C++ <math.h> doesn't declare hypot()
318 # -DNEED_DECLARATION_PCLOSE if your C++ <stdio.h> doesn't declare pclose()
319 # -DNEED_DECLARATION_POPEN if your C++ <stdio.h> doesn't declare popen()
320 # -DNEED_DECLARATION_PUTENV if your C++ <stdlib.h> doesn't declare
322 # -DNEED_DECLARATION_RAND if your C++ <stdlib.h> doesn't declare rand()
323 # -DNEED_DECLARATION_SNPRINTF if your C++ <stdio.h> doesn't declare
325 # -DNEED_DECLARATION_SRAND if your C++ <stdlib.h> doesn't declare srand()
326 # -DNEED_DECLARATION_STRCASECMP if your C++ <string.h> doesn't declare
328 # -DNEED_DECLARATION_STRNCASECMP
329 # if your C++ <string.h> doesn't declare
331 # -DNEED_DECLARATION_VFPRINTF if your C++ <stdio.h> doesn't declare
333 # -DNEED_DECLARATION_VSNPRINTF if your C++ <stdio.h> doesn't declare
336 # -DHAVE_DECL_GETC_UNLOCKED if you have getc_unlocked()
337 # -DHAVE_DECL_SYS_SIGLIST if you have sys_siglist[]
339 # -DHAVE_STRUCT_EXCEPTION if <math.h> defines struct exception
340 # -DHAVE_SYS_NERR if you have sysnerr in <errno.h> or <stdio.h>
341 # -DHAVE_SYS_ERRLIST if you have sys_errlist in <errno.h> or
343 # -DICONV_CONST=const if declaration of iconv() needs const
344 # -DLONG_FOR_TIME_T if localtime() takes a long * not a time_t *
345 # -DRETSIGTYPE=int if signal handlers return int not void
346 # -DRET_TYPE_SRAND_IS_VOID if srand() returns void not int
348 # -DWCOREFLAG=0200 if the 0200 bit of the status returned by
349 # wait() indicates whether a core image was
350 # produced for a process that was terminated
353 # -Duintmax_t=<value> define to `unsigned long' or `unsigned long
354 # long' if <inttypes.h> does not exist
356 # -DTRADITIONAL_CPP if your C++ compiler uses a traditional
357 # (Reiser) preprocessor
358 # -DARRAY_DELETE_NEEDS_SIZE if your C++ doesn't understand `delete []'
360 # -DPAGE=A4 if the the printer's page size is A4
361 # -DGHOSTSCRIPT=gs the name (and directory if required) of the
362 # ghostscript program
368 # {fmod,getcwd,mkstemp,putenv,snprintf,strcasecmp,
369 # strerror,strncasecmp,strtol}.$(OBJEXT)
371 # in LIBOBJS if your C library is missing the corresponding function.
372 # vsnprintf is defined in the snprintf.$(OBJEXT) module.
375 # `CCC' is the compiler for C++ (.cpp) files.
378 # CCDEFINES are definitions for C++ compilations.
380 # CDEFINES are definitions for C compilations.
390 X_EXTRA_LIBS
=@X_EXTRA_LIBS@
391 X_PRE_LIBS
=@X_PRE_LIBS@
402 # a simple heuristic assumption
403 LIBEXT
=`case $(OBJEXT) in obj) echo lib;; *) echo a;; esac`
409 INSTALL_PROGRAM
=@INSTALL_PROGRAM@
410 INSTALL_SCRIPT
=@INSTALL_SCRIPT@
411 INSTALL_DATA
=@INSTALL_DATA@
412 INSTALL_INFO
=@INSTALL_INFO@
417 # Flag that tells etags to assume C++.
421 # Sed command with which to edit sh scripts.
422 SH_SCRIPT_SED_CMD
=@SH_SCRIPT_SED_CMD@
423 # Sed script to deal with OS dependencies in sh scripts.
424 SH_DEPS_SED_SCRIPT
=$(top_builddir
)/arch
/misc
/shdeps.sed
426 # The program to create directory hierarchies.
427 mkinstalldirs
= $(SHELL
) $(top_srcdir
)/mkinstalldirs
431 #PURIFYCCFLAGS=-g++=yes \
432 # -collector=`dirname \`$(CCC) -print-libgcc-file-name\``/ld
434 # Passing down MAKEOVERRIDES prevents $(MAKE) from containing a second
435 # copy of $(MDEFINES) when making individual directories; this could
436 # cause the argument list to become too long on some systems.
438 "ALT_AWK_PROGS=$(ALT_AWK_PROGS)" \
439 "ALT_GHOSTSCRIPT_PROGS=$(ALT_GHOSTSCRIPT_PROGS)" \
441 "BROKEN_SPOOLER_FLAGS=$(BROKEN_SPOOLER_FLAGS)" \
444 "CCDEFINES=$(CCDEFINES)" \
445 "CCFLAGS=$(CCFLAGS)" \
446 "CDEFINES=$(CDEFINES)" \
448 "CPPFLAGS=$(CPPFLAGS)" \
450 "DVIPRINT=$(DVIPRINT)" \
453 "ETAGSCCFLAG=$(ETAGSCCFLAG)" \
454 "ETAGSFLAGS=$(ETAGSFLAGS)" \
456 "GLIBC21=$(GLIBC21)" \
458 "INSTALL_DATA=$(INSTALL_DATA)" \
459 "INSTALL_INFO=$(INSTALL_INFO)" \
460 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
461 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
462 "LDFLAGS=$(LDFLAGS)" \
464 "LIBICONV=$(LIBICONV)" \
466 "LIBOBJS=$(LIBOBJS)" \
468 "MAKEINFO=$(MAKEINFO)" \
469 "MAKEOVERRIDES=$(MAKEOVERRIDES)" \
471 "OTHERDEVDIRS=$(OTHERDEVDIRS)" \
473 "GHOSTSCRIPT=$(GHOSTSCRIPT)" \
474 "PERLPATH=$(PERLPATH)" \
475 "PSPRINT=$(PSPRINT)" \
477 "PURIFYCCFLAGS=$(PURIFYCCFLAGS)" \
482 "SH_SCRIPT_SED_CMD=$(SH_SCRIPT_SED_CMD)" \
483 "SH_DEPS_SED_SCRIPT=$(SH_DEPS_SED_SCRIPT)" \
484 "TTYDEVDIRS=$(TTYDEVDIRS)" \
485 "XDEVDIRS=$(XDEVDIRS)" \
486 "XLIBDIRS=$(XLIBDIRS)" \
487 "XPROGDIRS=$(XPROGDIRS)" \
488 "X_CFLAGS=$(X_CFLAGS)" \
490 "X_EXTRA_LIBS=$(X_EXTRA_LIBS)" \
491 "X_PRE_LIBS=$(X_PRE_LIBS)" \
493 "YACCFLAGS=$(YACCFLAGS)" \
494 "appresdir=$(appresdir)" \
496 "common_words_file=$(common_words_file)" \
497 "datadir=$(datadir)" \
498 "dataprogramdir=$(dataprogramdir)" \
499 "datasubdir=$(datasubdir)" \
501 "exampledir=$(exampledir)" \
502 "exec_prefix=$(exec_prefix)" \
503 "fontdir=$(fontdir)" \
504 "fontpath=$(fontpath)" \
506 "htmldocdir=$(htmldocdir)" \
507 "pdfdocdir=$(pdfdocdir)" \
508 "indexdir=$(indexdir)" \
509 "indexext=$(indexext)" \
510 "indexname=$(indexname)" \
511 "infodir=$(infodir)" \
512 "legacyfontdir=$(legacyfontdir)" \
514 "libprogramdir=$(libprogramdir)" \
515 "localfontdir=$(localfontdir)" \
516 "localtmacdir=$(localtmacdir)" \
517 "make_html=$(make_html)" \
518 "make_install_html=$(make_install_html)" \
519 "make_pdfdoc=$(make_pdfdoc)" \
520 "make_install_pdfdoc=$(make_install_pdfdoc)" \
521 "man1dir=$(man1dir)" \
522 "man1ext=$(man1ext)" \
523 "man5dir=$(man5dir)" \
524 "man5ext=$(man5ext)" \
525 "man7dir=$(man7dir)" \
526 "man7ext=$(man7ext)" \
527 "manroot=$(manroot)" \
528 "mkinstalldirs=$(mkinstalldirs)" \
529 "oldfontdir=$(oldfontdir)" \
530 "pnmtops_nosetpage=$(pnmtops_nosetpage)" \
532 "revision=$(revision)" \
533 "sys_tmac_prefix=$(sys_tmac_prefix)" \
534 "systemtmacdir=$(systemtmacdir)" \
535 "tmac_an_prefix=$(tmac_an_prefix)" \
536 "tmac_m_prefix=$(tmac_m_prefix)" \
537 "tmac_s_prefix=$(tmac_s_prefix)" \
538 "tmac_wrap=$(tmac_wrap)" \
539 "tmacdir=$(tmacdir)" \
540 "tmacpath=$(tmacpath)" \
541 "top_builddir=$(top_builddir)" \
542 "top_srcdir=$(top_srcdir)" \
545 MAKE_K_FLAG
=`case "$(MAKEFLAGS)" in *k*) echo ' -k ';; esac`
556 src
/preproc
/preconv \
568 src
/devices
/grohtml \
578 PROGDEPDIRS
=arch
/misc
579 PROGDIRS
=$(PROGDEPDIRS
) $(CCPROGDIRS
) $(CPROGDIRS
) $(XPROGDIRS
)
589 # `doc' must be processed before `contrib/pdfmark'.
607 ALLDIRS
=$(INCDIRS
) $(LIBDIRS
) $(PROGDIRS
) \
608 $(DEVDIRS
) $(XDEVDIRS
) $(OTHERDEVDIRS
) $(TTYDEVDIRS
) $(OTHERDIRS
)
610 font
/devps
/generate \
611 font
/devdvi
/generate \
612 font
/devlj4
/generate \
616 contrib
/chem
/examples \
617 contrib
/chem
/examples
/122 \
618 contrib
/groffer
/perl \
619 contrib
/groffer
/shell \
620 contrib
/hdtbl
/examples \
621 contrib
/mm
/examples \
623 contrib
/mom
/examples \
625 contrib
/gdiffmk
/tests \
628 $(INCDIRS
) $(LIBDIRS
) $(PROGDIRS
) $(DEVDIRS
) $(XDEVDIRS
) $(OTHERDEVDIRS
) \
629 $(ALLTTYDEVDIRS
) $(OTHERDIRS
) $(EXTRADIRS
) $(NOMAKEDIRS
)
630 TARGETS
=all install_bin
install_data clean distclean mostlyclean \
631 realclean extraclean distfiles TAGS depend uninstall_sub fonts
633 # This ENVSETUP gork is required by the DJGPP build on Windows 9X,
634 # where Make needs to be case-sensitive to find files like BI and VERSION.
636 if
test -f
$(srcdir)/makefile.ccpg
* && \
637 test -f
$(srcdir)/Makefile.ccpg
*; then \
638 FNCASE
=y
; export FNCASE
; \
643 dodirs
=$(ALLDIRS
) dot
644 # Default target for subdir_Makefile
645 subdir
=src
/roff
/troff
649 @
$(ENVSETUP
); $(MAKE
) $(MAKE_K_FLAG
) $(MDEFINES
) do
=$@
$(dodirs
)
653 $(MAKE
) $(MAKE_K_FLAG
) $(MDEFINES
) srcdir=$(srcdir) VPATH
=$(srcdir) \
654 -f
$(top_srcdir
)/Makefile.comm \
655 -f
$(top_srcdir
)/Makefile.sub
$(do
)
657 $(LIBDIRS
): FORCE
$(INCDIRS
) $(PROGDEPDIRS
)
659 if
test $(srcdir) = .
; then \
662 srcdir=`cd $(srcdir); pwd`/$@
; \
664 test -d
$@ ||
$(mkinstalldirs
) $@
; \
666 test -f Makefile.dep || touch Makefile.dep
; \
667 $(MAKE
) $(MAKE_K_FLAG
) $(MDEFINES
) srcdir=$$srcdir VPATH
=$$srcdir \
668 -f
$(top_srcdir
)/Makefile.comm \
669 -f
$$srcdir/Makefile.sub \
670 -f
$(top_srcdir
)/Makefile.lib \
671 -f Makefile.dep
$(do
)
673 $(CPROGDIRS
) $(XPROGDIRS
): FORCE
$(LIBDIRS
)
675 if
test $(srcdir) = .
; then \
678 srcdir=`cd $(srcdir); pwd`/$@
; \
680 test -d
$@ ||
$(mkinstalldirs
) $@
; \
682 test -f Makefile.dep || touch Makefile.dep
; \
683 $(MAKE
) $(MAKE_K_FLAG
) $(MDEFINES
) srcdir=$$srcdir VPATH
=$$srcdir \
684 -f
$(top_srcdir
)/Makefile.comm \
685 -f
$$srcdir/Makefile.sub \
686 -f
$(top_srcdir
)/Makefile.cpg \
687 -f Makefile.dep
$(do
)
689 $(CCPROGDIRS
): FORCE
$(LIBDIRS
)
691 if
test $(srcdir) = .
; then \
694 srcdir=`cd $(srcdir); pwd`/$@
; \
696 test -d
$@ ||
$(mkinstalldirs
) $@
; \
698 test -f Makefile.dep || touch Makefile.dep
; \
699 $(MAKE
) $(MAKE_K_FLAG
) $(MDEFINES
) srcdir=$$srcdir VPATH
=$$srcdir \
700 -f
$(top_srcdir
)/Makefile.comm \
701 -f
$$srcdir/Makefile.sub \
702 -f
$(top_srcdir
)/Makefile.ccpg \
703 -f Makefile.dep
$(do
)
705 $(DEVDIRS
) $(XDEVDIRS
) $(OTHERDEVDIRS
) $(TTYDEVDIRS
): FORCE
$(PROGDEPDIRS
) $(CCPROGDIRS
) $(CPROGDIRS
)
707 if
test $(srcdir) = .
; then \
710 srcdir=`cd $(srcdir); pwd`/$@
; \
712 test -d
$@ ||
$(mkinstalldirs
) $@
; \
714 $(MAKE
) $(MAKE_K_FLAG
) $(MDEFINES
) srcdir=$$srcdir VPATH
=$$srcdir \
715 -f
$(top_srcdir
)/Makefile.comm \
716 -f
$$srcdir/Makefile.sub \
717 -f
$(top_srcdir
)/Makefile.dev
$(do
)
719 $(OTHERDIRS
): $(PROGDEPDIRS
) $(CCPROGDIRS
) $(CPROGDIRS
)
721 $(INCDIRS
) $(PROGDEPDIRS
) $(OTHERDIRS
): FORCE
723 if
test $(srcdir) = .
; then \
726 srcdir=`cd $(srcdir); pwd`/$@
; \
728 test -d
$@ ||
$(mkinstalldirs
) $@
; \
730 $(MAKE
) $(MAKE_K_FLAG
) $(MDEFINES
) srcdir=$$srcdir VPATH
=$$srcdir \
731 -f
$(top_srcdir
)/Makefile.comm \
732 -f
$$srcdir/Makefile.sub \
733 -f
$(top_srcdir
)/Makefile.man
$(do
)
738 rm -f groff-
$(version
)$(revision
).
tar.gz
740 for d in
$(DISTDIRS
); do \
741 $(mkinstalldirs
) tmp
/$$d; \
743 srcdir=`cd $(srcdir); pwd`; \
745 $(LN_S
) ..
/Makefile .
; \
746 $(LN_S
) $$srcdir/* .
2>/dev
/null || true
; \
748 for d in
$(DISTDIRS
); do \
750 $(LN_S
) $$srcdir/$$d/* .
2>/dev
/null
; \
751 rm -rf CVS || true
); \
753 $(MAKE
) srcdir=. VPATH
=. distfiles
; \
754 $(MAKE
) srcdir=. VPATH
=. extraclean
; \
755 for d in
$(EXTRADIRS
); do \
757 if
test -f Makefile
; then \
758 $(MAKE
) extraclean
; \
760 $(MAKE
) -f
$(top_builddir
)/$$d/Makefile extraclean
; \
764 $(LN_S
) $$srcdir/Makefile.init Makefile
765 mv tmp groff-
$(version
)$(revision
)
766 tar cfh
- groff-
$(version
)$(revision
) | \
767 gzip
-c
>groff-
$(version
)$(revision
).
tar.gz
768 rm -fr groff-
$(version
)$(revision
)
770 # $(PROGDIRS): libgroff
771 # grops grotty grodvi: libdriver
772 # refer lookbib indxbib lkbib: libbib
773 # $(LIBDIRS) $(PROGDIRS): include
775 .PHONY
: $(ALLDIRS
) dot
$(TARGETS
) FORCE
777 # Create a Makefile in $(subdir). This is useful for development since it
778 # avoids running make recursively.
779 subdir_Makefile
: Makefile.cfg
780 $(MAKE
) do
=Makefile
$(subdir
)
782 Makefile.cfg
: Makefile
784 for var in
$(MDEFINES
); do \
785 echo
"$$var" >>Makefile.cfg
; \
788 Makefile
: Makefile.in
789 $(SHELL
) config.status
793 -test -d
$(DESTDIR
)$(prefix) \
794 ||
$(mkinstalldirs
) $(DESTDIR
)$(prefix)
795 @
$(ENVSETUP
); $(MAKE
) $(MAKE_K_FLAG
) $(MDEFINES
) \
796 do
=do_install
$(dodirs
)
797 cd
$(DESTDIR
)$(dataprogramdir
); \
799 $(LN_S
) $(version
)$(revision
) current
802 uninstall: uninstall_sub uninstall_dirs
804 .PHONY
: uninstall_dirs
805 # Use `rmdir' here so that the directories are only removed if they are empty.
807 -rm -f
$(dataprogramdir
)/current
808 -rmdir
$(man1dir) $(man5dir) $(man7dir) $(manroot
) \
809 $(tmacdir
) $(systemtmacdir
) $(localtmacdir
) \
810 $(fontdir
) $(localfontdir
) $(oldfontdir
) $(bindir) \
811 $(datasubdir
) $(dataprogramdir
) $(infodir) \
812 $(exampledir
) $(htmldocdir
) $(pdfdocdir
) $(docdir
) \
813 $(libprogramdir
) $(libdir) \
814 $(datadir)/doc
/groff
$(datadir)/doc
$(datadir) 2>/dev
/null ||
:
818 @echo There is no validation suite for this package.
820 #check: site.exp docheck
824 # if $(SHELL) -c "runtest --version" > /dev/null 2>&1; then \
827 # echo "WARNING: could not find \`runtest'" 1>&2; \
830 # This snippet has been taken from the automake package.
833 # @echo "Making a new site.exp file..."
834 # @echo "## these variables are automatically generated by make ##" >site.tmp
835 # @echo "# Do not edit here. If you wish to override these values" >>site.tmp
836 # @echo "# edit the last section" >>site.tmp
837 # @echo "set tool groff" >>site.tmp
838 # @echo "set srcdir $(srcdir)/testsuite" >>site.tmp
839 # @echo "set objdir `pwd`" >> site.tmp
840 # @echo "## All variables above are generated by configure. Do not edit! ##" >> site.tmp
841 # @test ! -f site.exp \
842 # || sed '1,/^## All variables above are.*##/ d' site.exp >> site.tmp
844 # @test ! -f site.exp || mv site.exp site.bak
845 # @mv site.tmp site.exp