1 # Copyright (C) 1989-2000, 2001, 2002, 2003, 2004, 2005
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.
24 top_srcdir
=@abs_top_srcdir@
26 top_builddir
=@abs_top_builddir@
28 # `RT_SEP' is the operating system's native PATH SEPARATOR CHAR, which
29 # is to be used in runtime PATHs compiled into groff executables.
30 RT_SEP
=@GROFF_PATH_SEPARATOR@
32 # `SH_SEP' is a alternative PATH SEPARATOR CHAR, to be used in shell
33 # scripts and makefile rules; it may be the same as `RT_SEP', but,
34 # particularly in some Microsoft environments, it may differ.
35 SH_SEP
=@PATH_SEPARATOR@
37 version
=`cat $(top_srcdir)/VERSION`
38 # No additional number if revision is zero.
39 revision
=`sed -e 's/^0$$//' -e 's/^[1-9].*$$/.&/' $(top_srcdir)/REVISION`
41 # Define `page' to be letter if your PostScript printer uses 8.5x11
42 # paper (USA) and define it to be A4, if it uses A4 paper (rest of the
46 # The name of the ghostscript program. Normally, gs, on GNU/Linux
47 # but it might be different on MS-DOS/MS-WIN32 systems.
48 GHOSTSCRIPT
=@GHOSTSCRIPT@
50 # `ALT_GHOSTSCRIPT_PROGS' specifies a list alternative names,
51 # which can be tried if `GHOSTSCRIPT' cannot be found at run time.
52 ALT_GHOSTSCRIPT_PROGS
=@ALT_GHOSTSCRIPT_PROGS@
54 # Similarly, `ALT_AWK_PROGS' specifies a list of alternative names,
55 # which can be tried at run time, to identify the awk program.
56 ALT_AWK_PROGS
=@ALT_AWK_PROGS@
58 # Normally the Postscript driver, grops, produces output that conforms
59 # to version 3.0 of the Adobe Document Structuring Conventions.
60 # Unfortunately some spoolers and previewers can't handle such output.
61 # The BROKEN_SPOOLER_FLAGS variable tells grops what it should do to
62 # make its output acceptable to such programs. This variable controls
63 # only the default behaviour of grops; the behaviour can be changed at
64 # runtime by the grops -b option (and so by groff -P-b).
65 # Use a value of 0 if your spoolers and previewers are able to handle
66 # conforming PostScript correctly.
67 # Add 1 if no %%{Begin,End}DocumentSetup comments should be generated;
68 # this is needed for early versions of TranScript that get confused by
69 # anything between the %%EndProlog line and the first %%Page: comment.
70 # Add 2 if lines in included files beginning with %! should be
71 # stripped out; this is needed for the OpenWindows 2.0 pageview previewer.
72 # Add 4 if %%Page, %%Trailer and %%EndProlog comments should be
73 # stripped out of included files; this is needed for spoolers that
74 # don't understand the %%{Begin,End}Document comments. I suspect this
75 # includes early versions of TranScript.
76 # Add 8 if the first line of the PostScript output should be %!PS-Adobe-2.0
77 # rather than %!PS-Adobe-3.0; this is needed when using Sun's Newsprint
78 # with a printer that requires page reversal.
79 BROKEN_SPOOLER_FLAGS
=@BROKEN_SPOOLER_FLAGS@
81 # `DEVICE' is the default device.
84 # `XDEVDIRS' is either `font/devX{75,100}{,-12}' or empty.
87 # `XPROGDIRS' is either `src/devices/xditview src/utils/xtotroff' or empty.
90 # `XLIBDIRS' is either `src/libs/libxutil' or empty.
93 # `TTYDEVDIRS' is either `font/devascii font/devlatin1' (for
94 # ASCII) or `font/devcp1047' (for EBCDIC) plus font/devutf8.
95 TTYDEVDIRS
=@TTYDEVDIRS@ font
/devutf8
97 # `OTHERDEVDIRS' is either `font/devlj4 font/devlbp' (for ASCII) or
99 OTHERDEVDIRS
=@OTHERDEVDIRS@
101 # `PSPRINT' is the command to use for printing a PostScript file,
105 # `DVIPRINT' is the command to use for printing a TeX dvi file,
106 # for example `lpr -d'.
109 # Prefix for names of programs that have Unix counterparts.
110 # For example, if `g' is `g' then troff will be installed as
111 # gtroff. This doesn't affect programs like grops or groff that have
112 # no Unix counterparts. Note that the groff versions of eqn and tbl
113 # will not work with Unix troff.
116 # Common prefix for installation directories.
117 # Used in definitions of exec_prefix, datasubdir, fontpath, manroot.
118 # This must already exist when you do make install.
120 exec_prefix=@
exec_prefix@
122 # `bindir' says where to install executables.
125 # `libdir' says where to install platform-dependent data.
127 libprogramdir
=$(libdir)/groff
129 # `datasubdir' says where to install platform-independent data files.
131 dataprogramdir
=$(datadir)/groff
132 datasubdir
=$(dataprogramdir
)
134 # `infodir' says where to install info files.
137 # `docdir' says where to install documentation files.
138 docdir
=$(datadir)/doc
/groff
/$(version
)$(revision
)
140 # `exampledir' says where to install example files.
141 exampledir
=$(docdir
)/examples
143 # `htmldocdir' says where to install documentation in HTML format.
144 htmldocdir
=$(docdir
)/html
146 # `pdfdocdir' says where to install documentation in PDF format.
147 pdfdocdir
=$(docdir
)/pdf
149 # `fontdir' says where to install dev*/*.
150 fontdir
=$(datasubdir
)/font
152 # `localfontdir' says where local fonts will be installed (as dev*/*).
153 localfontdir
=$(dataprogramdir
)/site-font
155 # `legacyfontdir' is for compatibility with non-GNU troff.
156 legacyfontdir
=/usr
/lib
/font
158 # `fontpath' says where to look for dev*/*.
159 fontpath
=$(localfontdir
)$(RT_SEP
)$(fontdir
)$(RT_SEP
)$(legacyfontdir
)
161 # `tmacdir' says where to install macros.
162 tmacdir
=$(datasubdir
)/tmac
164 # `systemtmacdir' says where to install platform-dependent macros.
165 systemtmacdir
=$(libprogramdir
)/site-tmac
167 # `localtmacdir' says where local files will be installed.
168 localtmacdir
=$(dataprogramdir
)/site-tmac
170 # `appresdir' says where to install the application resource file for
172 appresdir
=@appresdir@
174 # `tmacpath' says where to look for macro files.
175 # The current directory will be prepended in unsafe mode only; the home
176 # directory will be always added.
177 # `troffrc' and `troffrc-end' (and `eqnrc') are searched neither in the
178 # current nor in the home directory.
179 tmacpath
=$(systemtmacdir
)$(RT_SEP
)$(localtmacdir
)$(RT_SEP
)$(tmacdir
)
181 # `sys_tmac_prefix' is prefix (if any) for system macro packages.
182 sys_tmac_prefix
=@sys_tmac_prefix@
184 # `pnmtops_nosetpage' is the command to be run to generate an eps
185 # file. Some versions of pnmtops provide the -nosetpage option.
186 # We detect this and use it if present.
187 pnmtops_nosetpage
=@pnmtops_nosetpage@
189 # `tmac_wrap' is list of system macro packages that should be made
190 # available to groff by creating a corresponding macro package
191 # in the groff macro directory that references the system macro
193 tmac_wrap
=@tmac_wrap@
195 # If there is a groff version of a macro package listed in $(tmac_wrap),
196 # then the groff version will be installed with a prefix of this.
197 # Don't make this empty.
200 # The groff -mm macros will be available as -m$(tmac_m_prefix)m.
202 `for i in $(tmac_wrap) ""; do case "$$i" in m) echo $(tmac_prefix);; esac; done`
203 # The groff -ms macros will be available as -m$(tmac_s_prefix)s.
205 `for i in $(tmac_wrap) ""; do case "$$i" in s) echo $(tmac_prefix);; esac; done`
206 # The groff -man macros will be available as -m$(tmac_an_prefix)an.
208 `for i in $(tmac_wrap) ""; do case "$$i" in an) echo $(tmac_prefix);; esac; done`
210 # Extension to be used for refer index files. Index files are not
211 # sharable between different architectures, so you might want to use
212 # different suffixes for different architectures. Choose an extension
213 # that doesn't conflict with refer or any other indexing program.
216 # Directory containing the default index for refer.
217 indexdir
=/usr
/dict
/papers
219 # The filename (without suffix) of the default index for refer.
222 # common_words_file is a file containing a list of common words.
223 # If your system provides /usr/lib/eign it will be copied onto this,
224 # otherwise the supplied eign file will be used.
225 common_words_file
=$(datasubdir
)/eign
227 # `manroot' is the root of the man page directory tree.
231 # `man1ext' is the man section for user commands.
233 man1dir=$(manroot
)/man
$(man1ext)
235 # `man5ext' is the man section for file formats.
237 man5dir=$(manroot
)/man
$(man5ext)
239 # `man7ext' is the man section for macros.
241 man7dir=$(manroot
)/man
$(man7ext)
243 # The configure script checks whether all necessary utility programs for
244 # grohtml are available -- only then we can build the HTML documentation.
245 make_html
=@make_html@
246 make_install_html
=@make_install_html@
248 # NetBSD_DISABLED_make_html
249 # NetBSD_DISABLED_make_install_html
250 # disable html creation or installation; we don't want to depend
255 # The configure script also checks whether all necessary utility programs
256 # for pdfroff are available -- only then we can build PDF documentation.
257 make_pdfdoc
=@make_pdfdoc@
258 make_install_pdfdoc
=@make_install_pdfdoc@
260 # DEFINES should include the following:
261 # -DHAVE_MMAP if you have mmap() and <sys/mman.h>
262 # -DARRAY_DELETE_NEEDS_SIZE if your C++ doesn't understand `delete []'
263 # -DSYS_SIGLIST_DECLARED if you have sys_siglist[]
264 # -DWCOREFLAG=0200 if the 0200 bit of the status returned by
265 # wait() indicates whether a core image was
266 # produced for a process that was terminated
269 # -DHAVE_DIRENT_H if you have <dirent.h>
270 # -DHAVE_LIMITS_H if you have <limits.h>
271 # -DHAVE_CC_LIMITS_H if you have a C++ <limits.h>
272 # -DHAVE_MATH_H if you have <math.h>
273 # -DHAVE_CC_OSFCN_H if you have a C++ <osfcn.h>
274 # -DHAVE_CC_INTTYPES_H if you have a C++ <inttypes.h>
275 # -DHAVE_STDLIB_H if you have <stdlib.h>
276 # -DHAVE_STRING_H if you have <string.h>
277 # -DHAVE_STRINGS_H if you have <strings.h>
278 # -DHAVE_SYS_DIR_H if you have <sys/dir.h>
279 # -DHAVE_SYS_TIME_H if you have <sys/time.h>
280 # -DHAVE_UNISTD_H if you have <unistd.h>
282 # -DHAVE_FMOD if you have fmod()
283 # -DHAVE_GETCWD if you have getcwd()
284 # -DHAVE_GETTIMEOFDAY if you have gettimeofday()
285 # -DHAVE_ISATTY if you have isatty()
286 # -DHAVE_KILL if you have kill()
287 # -DHAVE_MKSTEMP if you have mkstemp()
288 # -DHAVE_MMAP if you have mmap()
289 # -DHAVE_PUTENV if you have putenv()
290 # -DHAVE_RENAME if you have rename()
291 # -DHAVE_SETLOCALE if you have setlocale()
292 # -DHAVE_SNPRINTF if you have snprintf()
293 # -DHAVE_STRCASECMP if you have strcasecmp()
294 # -DHAVE_STRNCASECMP if you have strncasecmp()
295 # -DHAVE_STRERROR if you have strerror()
296 # -DHAVE_STRSEP if you have strsep()
297 # -DHAVE_STRTOL if you have strtol()
298 # -DHAVE_VSNPRINTF if you have vsnprintf()
300 # -DNEED_DECLARATION_GETTIMEOFTODAY
301 # if your C++ <sys/time.h> doesn't declare
303 # -DNEED_DECLARATION_HYPOT if your C++ <math.h> doesn't declare hypot()
304 # -DNEED_DECLARATION_PCLOSE if your C++ <stdio.h> doesn't declare pclose()
305 # -DNEED_DECLARATION_POPEN if your C++ <stdio.h> doesn't declare popen()
306 # -DNEED_DECLARATION_PUTENV if your C++ <stdlib.h> doesn't declare
308 # -DNEED_DECLARATION_RAND if your C++ <stdlib.h> doesn't declare rand()
309 # -DNEED_DECLARATION_SNPRINTF if your C++ <stdio.h> doesn't declare
311 # -DNEED_DECLARATION_SRAND if your C++ <stdlib.h> doesn't declare srand()
312 # -DNEED_DECLARATION_STRCASECMP if your C++ <string.h> doesn't declare
314 # -DNEED_DECLARATION_STRNCASECMP
315 # if your C++ <string.h> doesn't declare
317 # -DNEED_DECLARATION_VFPRINTF if your C++ <stdio.h> doesn't declare
319 # -DNEED_DECLARATION_VSNPRINTF if your C++ <stdio.h> doesn't declare
322 # -DRET_TYPE_SRAND_IS_VOID if srand() returns void not int
323 # -DHAVE_SYS_NERR if you have sysnerr in <errno.h> or <stdio.h>
324 # -DHAVE_SYS_ERRLIST if you have sys_errlist in <errno.h> or
326 # -DTRADITIONAL_CPP if your C++ compiler uses a traditional
327 # (Reiser) preprocessor
328 # -DLONG_FOR_TIME_T if localtime() takes a long * not a time_t *
329 # -DHAVE_STRUCT_EXCEPTION if <math.h> defines struct exception
330 # -DRETSIGTYPE=int if signal handlers return int not void
331 # -DIS_EBCDIC_HOST if the host's encoding is EBCDIC
332 # -DPAGE=A4 if the the printer's page size is A4
333 # -DGHOSTSCRIPT=gs the name (and directory if required) of the
334 # ghostscript program
339 # {fmod,getcwd,mkstemp,putenv,snprintf,strcasecmp,
340 # strerror,strncasecmp,strtol}.$(OBJEXT)
342 # in LIBOBJS if your C library is missing the corresponding function.
343 # vsnprintf is defined in the snprintf.$(OBJEXT) module.
346 # `CCC' is the compiler for C++ (.cpp) files.
349 # CCDEFINES are definitions for C++ compilations.
351 # CDEFINES are definitions for C compilations.
361 X_EXTRA_LIBS
=@X_EXTRA_LIBS@
362 X_PRE_LIBS
=@X_PRE_LIBS@
369 # a simple heuristic assumption
370 LIBEXT
=`case $(OBJEXT) in obj) echo lib;; *) echo a;; esac`
375 INSTALL_PROGRAM
=@INSTALL_PROGRAM@
376 INSTALL_SCRIPT
=@INSTALL_SCRIPT@
377 INSTALL_DATA
=@INSTALL_DATA@
378 INSTALL_INFO
=@INSTALL_INFO@
383 # Flag that tells etags to assume C++.
387 # Sed command with which to edit sh scripts.
388 SH_SCRIPT_SED_CMD
=@SH_SCRIPT_SED_CMD@
389 # Sed script to deal with OS dependencies in sh scripts.
390 SH_DEPS_SED_SCRIPT
=$(top_builddir
)/arch
/misc
/shdeps.sed
392 # The program to create directory hierarchies.
393 mkinstalldirs
= $(SHELL
) $(top_srcdir
)/mkinstalldirs
397 #PURIFYCCFLAGS=-g++=yes \
398 # -collector=`dirname \`$(CCC) -print-libgcc-file-name\``/ld
400 # Passing down MAKEOVERRIDES prevents $(MAKE) from containing a second
401 # copy of $(MDEFINES) when making individual directories; this could
402 # cause the argument list to become too long on some systems.
404 "ALT_AWK_PROGS=$(ALT_AWK_PROGS)" \
405 "ALT_GHOSTSCRIPT_PROGS=$(ALT_GHOSTSCRIPT_PROGS)" \
407 "BROKEN_SPOOLER_FLAGS=$(BROKEN_SPOOLER_FLAGS)" \
410 "CCDEFINES=$(CCDEFINES)" \
411 "CCFLAGS=$(CCFLAGS)" \
412 "CDEFINES=$(CDEFINES)" \
414 "CPPFLAGS=$(CPPFLAGS)" \
416 "DVIPRINT=$(DVIPRINT)" \
418 "ETAGSCCFLAG=$(ETAGSCCFLAG)" \
419 "ETAGSFLAGS=$(ETAGSFLAGS)" \
421 "INSTALL_DATA=$(INSTALL_DATA)" \
422 "INSTALL_INFO=$(INSTALL_INFO)" \
423 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
424 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
425 "LDFLAGS=$(LDFLAGS)" \
428 "LIBOBJS=$(LIBOBJS)" \
430 "MAKEOVERRIDES=$(MAKEOVERRIDES)" \
432 "OTHERDEVDIRS=$(OTHERDEVDIRS)" \
434 "GHOSTSCRIPT=$(GHOSTSCRIPT)" \
435 "PERLPATH=$(PERLPATH)" \
436 "PSPRINT=$(PSPRINT)" \
438 "PURIFYCCFLAGS=$(PURIFYCCFLAGS)" \
443 "SH_SCRIPT_SED_CMD=$(SH_SCRIPT_SED_CMD)" \
444 "SH_DEPS_SED_SCRIPT=$(SH_DEPS_SED_SCRIPT)" \
445 "TTYDEVDIRS=$(TTYDEVDIRS)" \
446 "XDEVDIRS=$(XDEVDIRS)" \
447 "XLIBDIRS=$(XLIBDIRS)" \
448 "XPROGDIRS=$(XPROGDIRS)" \
449 "X_CFLAGS=$(X_CFLAGS)" \
451 "X_EXTRA_LIBS=$(X_EXTRA_LIBS)" \
452 "X_PRE_LIBS=$(X_PRE_LIBS)" \
454 "YACCFLAGS=$(YACCFLAGS)" \
455 "appresdir=$(appresdir)" \
457 "common_words_file=$(common_words_file)" \
458 "datadir=$(datadir)" \
459 "dataprogramdir=$(dataprogramdir)" \
460 "datasubdir=$(datasubdir)" \
462 "exampledir=$(exampledir)" \
463 "exec_prefix=$(exec_prefix)" \
464 "fontdir=$(fontdir)" \
465 "fontpath=$(fontpath)" \
467 "htmldocdir=$(htmldocdir)" \
468 "pdfdocdir=$(pdfdocdir)" \
469 "indexdir=$(indexdir)" \
470 "indexext=$(indexext)" \
471 "indexname=$(indexname)" \
472 "infodir=$(infodir)" \
473 "legacyfontdir=$(legacyfontdir)" \
475 "libprogramdir=$(libprogramdir)" \
476 "localfontdir=$(localfontdir)" \
477 "localtmacdir=$(localtmacdir)" \
478 "make_html=$(make_html)" \
479 "make_install_html=$(make_install_html)" \
480 "make_pdfdoc=$(make_pdfdoc)" \
481 "make_install_pdfdoc=$(make_install_pdfdoc)" \
482 "man1dir=$(man1dir)" \
483 "man1ext=$(man1ext)" \
484 "man5dir=$(man5dir)" \
485 "man5ext=$(man5ext)" \
486 "man7dir=$(man7dir)" \
487 "man7ext=$(man7ext)" \
488 "manroot=$(manroot)" \
489 "mkinstalldirs=$(mkinstalldirs)" \
491 "revision=$(revision)" \
492 "sys_tmac_prefix=$(sys_tmac_prefix)" \
493 "pnmtops_nosetpage=$(pnmtops_nosetpage)" \
494 "systemtmacdir=$(systemtmacdir)" \
495 "tmac_an_prefix=$(tmac_an_prefix)" \
496 "tmac_m_prefix=$(tmac_m_prefix)" \
497 "tmac_s_prefix=$(tmac_s_prefix)" \
498 "tmac_wrap=$(tmac_wrap)" \
499 "tmacdir=$(tmacdir)" \
500 "tmacpath=$(tmacpath)" \
501 "top_builddir=$(top_builddir)" \
502 "top_srcdir=$(top_srcdir)" \
525 src
/devices
/grohtml \
536 PROGDEPDIRS
=arch
/misc
537 PROGDIRS
=$(PROGDEPDIRS
) $(CCPROGDIRS
) $(CPROGDIRS
)
547 # `doc' must be processed before `contrib/pdfmark'.
562 ALLDIRS
=$(INCDIRS
) $(LIBDIRS
) $(PROGDIRS
) \
563 $(DEVDIRS
) $(XDEVDIRS
) $(OTHERDEVDIRS
) $(TTYDEVDIRS
) $(OTHERDIRS
)
565 font
/devps
/generate \
566 font
/devdvi
/generate \
567 font
/devlj4
/generate \
571 contrib
/mm
/examples \
573 contrib
/mom
/examples \
575 contrib
/gdiffmk
/tests \
578 $(INCDIRS
) $(LIBDIRS
) $(PROGDIRS
) $(DEVDIRS
) $(XDEVDIRS
) $(OTHERDEVDIRS
) \
579 $(ALLTTYDEVDIRS
) $(OTHERDIRS
) $(EXTRADIRS
) $(NOMAKEDIRS
)
580 TARGETS
=all install install_bin
install_data clean distclean mostlyclean \
581 realclean extraclean distfiles TAGS depend uninstall_sub
583 # This ENVSETUP gork is required by the DJGPP build on Windows 9X,
584 # where Make needs to be case-sensitive to find files like BI and VERSION.
586 if
test -f
$(srcdir)/makefile.ccpg
* && \
587 test -f
$(srcdir)/Makefile.ccpg
*; then \
588 FNCASE
=y
; export FNCASE
; \
593 dodirs
=$(ALLDIRS
) dot
594 # Default target for subdir_Makefile
595 subdir
=src
/roff
/troff
599 @
$(ENVSETUP
); $(MAKE
) $(MDEFINES
) do
=$@
$(dodirs
)
603 $(MAKE
) $(MDEFINES
) srcdir=$(srcdir) VPATH
=$(srcdir) \
604 -f
$(top_srcdir
)/Makefile.comm \
605 -f
$(top_srcdir
)/Makefile.sub
$(do
)
609 if
test $(srcdir) = .
; then \
612 srcdir=`cd $(srcdir); pwd`/$@
; \
614 test -d
$@ ||
$(mkinstalldirs
) $@
; \
616 test -f Makefile.dep || touch Makefile.dep
; \
617 $(MAKE
) $(MDEFINES
) srcdir=$$srcdir VPATH
=$$srcdir \
618 -f
$(top_srcdir
)/Makefile.comm \
619 -f
$$srcdir/Makefile.sub \
620 -f
$(top_srcdir
)/Makefile.lib \
621 -f Makefile.dep
$(do
)
625 if
test $(srcdir) = .
; then \
628 srcdir=`cd $(srcdir); pwd`/$@
; \
630 test -d
$@ ||
$(mkinstalldirs
) $@
; \
632 test -f Makefile.dep || touch Makefile.dep
; \
633 $(MAKE
) $(MDEFINES
) srcdir=$$srcdir VPATH
=$$srcdir \
634 -f
$(top_srcdir
)/Makefile.comm \
635 -f
$$srcdir/Makefile.sub \
636 -f
$(top_srcdir
)/Makefile.cpg \
637 -f Makefile.dep
$(do
)
641 if
test $(srcdir) = .
; then \
644 srcdir=`cd $(srcdir); pwd`/$@
; \
646 test -d
$@ ||
$(mkinstalldirs
) $@
; \
648 test -f Makefile.dep || touch Makefile.dep
; \
649 $(MAKE
) $(MDEFINES
) srcdir=$$srcdir VPATH
=$$srcdir \
650 -f
$(top_srcdir
)/Makefile.comm \
651 -f
$$srcdir/Makefile.sub \
652 -f
$(top_srcdir
)/Makefile.ccpg \
653 -f Makefile.dep
$(do
)
655 $(DEVDIRS
) $(XDEVDIRS
) $(OTHERDEVDIRS
) $(TTYDEVDIRS
): FORCE
657 if
test $(srcdir) = .
; then \
660 srcdir=`cd $(srcdir); pwd`/$@
; \
662 test -d
$@ ||
$(mkinstalldirs
) $@
; \
664 $(MAKE
) $(MDEFINES
) srcdir=$$srcdir VPATH
=$$srcdir \
665 -f
$(top_srcdir
)/Makefile.comm \
666 -f
$$srcdir/Makefile.sub \
667 -f
$(top_srcdir
)/Makefile.dev
$(do
)
669 $(INCDIRS
) $(PROGDEPDIRS
) $(OTHERDIRS
): FORCE
671 if
test $(srcdir) = .
; then \
674 srcdir=`cd $(srcdir); pwd`/$@
; \
676 test -d
$@ ||
$(mkinstalldirs
) $@
; \
678 $(MAKE
) $(MDEFINES
) srcdir=$$srcdir VPATH
=$$srcdir \
679 -f
$(top_srcdir
)/Makefile.comm \
680 -f
$$srcdir/Makefile.sub \
681 -f
$(top_srcdir
)/Makefile.man
$(do
)
686 rm -f groff-
$(version
)$(revision
).
tar.gz
688 for d in
$(DISTDIRS
); do \
689 $(mkinstalldirs
) tmp
/$$d; \
691 srcdir=`cd $(srcdir); pwd`; \
693 $(LN_S
) ..
/Makefile .
; \
694 $(LN_S
) $$srcdir/* .
2>/dev
/null || true
; \
696 for d in
$(DISTDIRS
); do \
698 $(LN_S
) $$srcdir/$$d/* .
2>/dev
/null
; \
699 rm -rf CVS || true
); \
701 $(MAKE
) srcdir=. VPATH
=. distfiles
; \
702 $(MAKE
) srcdir=. VPATH
=. extraclean
; \
703 for d in
$(EXTRADIRS
); do \
705 if
test -f Makefile
; then \
706 $(MAKE
) extraclean
; \
708 $(MAKE
) -f
$(top_builddir
)/$$d/Makefile extraclean
; \
712 $(LN_S
) $$srcdir/Makefile.init Makefile
713 mv tmp groff-
$(version
)$(revision
)
714 tar cfh
- groff-
$(version
)$(revision
) | \
715 gzip
-c
>groff-
$(version
)$(revision
).
tar.gz
716 rm -fr groff-
$(version
)$(revision
)
718 # $(PROGDIRS): libgroff
719 # grops grotty grodvi: libdriver
720 # refer lookbib indxbib lkbib: libbib
721 # $(LIBDIRS) $(PROGDIRS): include
723 .PHONY
: $(ALLDIRS
) dot
$(TARGETS
) FORCE
725 # Create a Makefile in $(subdir). This is useful for development since it
726 # avoids running make recursively.
727 subdir_Makefile
: Makefile.cfg
728 $(MAKE
) do
=Makefile
$(subdir
)
730 Makefile.cfg
: Makefile
732 for var in
$(MDEFINES
); do \
733 echo
"$$var" >>Makefile.cfg
; \
736 Makefile
: Makefile.in
737 $(SHELL
) config.status
740 uninstall: uninstall_sub uninstall_dirs
742 .PHONY
: uninstall_dirs
744 # Use `rmdir' here so that the directories are only removed if they are empty.
745 -rmdir
$(man1dir) $(man5dir) $(man7dir) $(manroot
) \
746 $(tmacdir
) $(systemtmacdir
) $(localtmacdir
) \
747 $(fontdir
) $(localfontdir
) $(bindir) \
748 $(datasubdir
) $(dataprogramdir
) $(infodir) \
749 $(exampledir
) $(htmldocdir
) $(pdfdocdir
) $(docdir
) \
750 $(libprogramdir
) $(libdir) \
751 $(datadir)/doc
/groff
$(datadir)/doc
$(datadir) 2>/dev
/null ||
:
753 .PHONY
: check docheck
754 check: site.exp docheck
757 if
$(SHELL
) -c
"runtest --version" > /dev
/null
2>&1; then \
760 echo
"WARNING: could not find \`runtest'" 1>&2; \
763 # This snippet has been taken from the automake package.
766 @echo
"Making a new site.exp file..."
767 @echo
"## these variables are automatically generated by make ##" >site.tmp
768 @echo
"# Do not edit here. If you wish to override these values" >>site.tmp
769 @echo
"# edit the last section" >>site.tmp
770 @echo
"set tool groff" >>site.tmp
771 @echo
"set srcdir $(srcdir)/testsuite" >>site.tmp
772 @echo
"set objdir `pwd`" >> site.tmp
773 @echo
"## All variables above are generated by configure. Do not edit! ##" >> site.tmp
774 @
test ! -f site.exp \
775 || sed
'1,/^## All variables above are.*##/ d' site.exp
>> site.tmp
777 @
test ! -f site.exp || mv site.exp site.bak
778 @mv site.tmp site.exp