IBM cp1047 import
[s-roff.git] / Makefile.in
blob3ca10d4d28195563355b30506045f6839ea2e01f
1 # Copyright (C) 1989-2000 Free Software Foundation, Inc.
2 # Written by James Clark (jjc@jclark.com)
3 #
4 # This file is part of groff.
5 #
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
9 # version.
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
14 # for more details.
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
22 # world).
23 PAGE=@PAGE@
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.
49 DEVICE=ps
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,
56 # for example `lpr'.
57 PSPRINT=@PSPRINT@
59 # DVIPRINT is the command to use for printing a TeX dvi file,
60 # for example `lpr -d'.
61 DVIPRINT=@DVIPRINT@
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.
68 g=@g@
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.
73 prefix=@prefix@
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.
94 tmacpath=.:$(tmacdir)
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
102 # package.
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.
108 tmac_prefix=g
110 # The groff -mm macros will be available as -m$(tmac_m_prefix)m.
111 tmac_m_prefix=\
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.
114 tmac_s_prefix=\
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.
117 tmac_an_prefix=\
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.
124 indexext=.i
126 # Directory containing the default index for refer.
127 indexdir=/usr/dict/papers
129 # The filename (without suffix) of the default index for refer.
130 indexname=Ind
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.
141 man1ext=1
142 man1dir=$(manroot)/man$(man1ext)
144 # man5ext is the man section for file formats.
145 man5ext=5
146 man5dir=$(manroot)/man$(man5ext)
148 # man7ext is the man section for macros.
149 man7ext=7
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
159 # by a signal
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
178 # <stdio.h>
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
186 DEFINES=@DEFS@
188 # Include fmod.o, strtol.o, getcwd.o, strerror.o, putenv.o in LIBOBJS if
189 # your C library is missing the corresponding function.
190 LIBOBJS=@LIBOBJS@
192 # CCC is the compiler for C++ (.cc) files.
193 CCC=@CXX@
194 CC=@CC@
195 # CCDEFINES are definitions for C++ compilations.
196 CCDEFINES=$(DEFINES)
197 # CDEFINES are definitions for C compilations.
198 CDEFINES=$(DEFINES)
200 CCFLAGS=@CXXFLAGS@
201 CFLAGS=@CFLAGS@
202 LDFLAGS=@LDFLAGS@
203 YACC=@YACC@
204 YACCFLAGS=-v
206 LIBS=@LIBS@
207 LIBM=@LIBM@
208 RANLIB=@RANLIB@
209 INSTALL=@INSTALL@
210 INSTALL_PROGRAM=@INSTALL_PROGRAM@
211 INSTALL_SCRIPT=@INSTALL_SCRIPT@
212 INSTALL_DATA=@INSTALL_DATA@
213 LN_S=@LN_S@
214 AR=ar
215 ETAGS=etags
216 ETAGSFLAGS=
217 # Flag that tells etags to assume C++.
218 ETAGSCCFLAG=-C
219 # Full path to perl.
220 PERLPATH=@PERLPATH@
221 # Sed command with which to edit sh scripts.
222 SH_SCRIPT_SED_CMD=@SH_SCRIPT_SED_CMD@
224 srcdir=@srcdir@
225 top_srcdir=@top_srcdir@
226 VPATH=@srcdir@
227 top_builddir=@top_builddir@
229 # the program to create directory hierarchies
230 mkinstalldirs=$(top_srcdir)/mkinstalldirs
232 PURIFY=purify
233 PURIFYCCFLAGS=
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.
240 MDEFINES= \
241 "MAKEOVERRIDES=$(MAKEOVERRIDES)" \
242 "PAGE=$(PAGE)" \
243 "BROKEN_SPOOLER_FLAGS=$(BROKEN_SPOOLER_FLAGS)" \
244 "DEVICE=$(DEVICE)" \
245 "TTYDEVDIRS=$(TTYDEVDIRS)" \
246 "PSPRINT=$(PSPRINT)" \
247 "DVIPRINT=$(DVIPRINT)" \
248 "top_srcdir=$(top_srcdir)" \
249 "top_builddir=$(top_builddir)" \
250 "prefix=$(prefix)" \
251 "exec_prefix=$(exec_prefix)" \
252 "bindir=$(bindir)" \
253 "g=$(g)" \
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)" \
277 "CCC=$(CCC)" \
278 "CC=$(CC)" \
279 "CCDEFINES=$(CCDEFINES)" \
280 "CDEFINES=$(CDEFINES)" \
281 "CCFLAGS=$(CCFLAGS)" \
282 "CFLAGS=$(CFLAGS)" \
283 "LDFLAGS=$(LDFLAGS)" \
284 "YACC=$(YACC)" \
285 "YACCFLAGS=$(YACCFLAGS)" \
286 "LIBM=$(LIBM)" \
287 "LIBS=$(LIBS)" \
288 "LIBOBJS=$(LIBOBJS)" \
289 "RANLIB=$(RANLIB)" \
290 "AR=$(AR)" \
291 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
292 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
293 "INSTALL_DATA=$(INSTALL_DATA)" \
294 "ETAGS=$(ETAGS)" \
295 "ETAGSFLAGS=$(ETAGSFLAGS)" \
296 "ETAGSCCFLAG=$(ETAGSCCFLAG)" \
297 "PERLPATH=$(PERLPATH)" \
298 "SH_SCRIPT_SED_CMD=$(SH_SCRIPT_SED_CMD)" \
299 "PURIFY=$(PURIFY)" \
300 "PURIFYCCFLAGS=$(PURIFYCCFLAGS)"
302 SHELL=/bin/sh
303 INCDIRS=src/include
304 LIBDIRS=\
305 src/libs/libgroff \
306 src/libs/libdriver \
307 src/libs/libbib
308 CCPROGDIRS=\
309 src/roff/groff \
310 src/roff/troff \
311 src/preproc/tbl \
312 src/preproc/pic \
313 src/preproc/eqn \
314 src/preproc/grn \
315 src/preproc/refer \
316 src/preproc/soelim \
317 src/devices/grops \
318 src/devices/grotty \
319 src/devices/grodvi \
320 src/devices/grolj4 \
321 src/devices/grohtml \
322 src/devices/grolbp \
323 src/utils/tfmtodit \
324 src/utils/hpftodit \
325 src/utils/lookbib \
326 src/utils/indxbib \
327 src/utils/lkbib \
328 src/utils/addftinfo
329 CPROGDIRS=src/utils/pfbtops
330 PROGDIRS=$(CCPROGDIRS) $(CPROGDIRS)
331 DEVDIRS=\
332 font/devps \
333 font/devdvi \
334 $(TTYDEVDIRS) \
335 font/devutf8 \
336 font/devX75 \
337 font/devX75-12 \
338 font/devX100 \
339 font/devX100-12 \
340 font/devlj4 \
341 font/devhtml \
342 font/devlbp
343 OTHERDIRS=\
344 man \
345 tmac \
346 src/utils/afmtodit \
347 src/roff/grog \
348 src/roff/nroff \
349 contrib/mm
350 ALLDIRS=$(INCDIRS) $(LIBDIRS) $(PROGDIRS) $(DEVDIRS) $(OTHERDIRS)
351 EXTRADIRS=\
352 fonts/devps/generate \
353 fonts/devdvi/generate \
354 src/xditview \
356 DISTDIRS=$(ALLDIRS) $(EXTRADIRS)
357 TARGETS=all install install_bin install_data clean distclean mostlyclean \
358 realclean extraclean distfiles TAGS depend uninstall_sub
360 do=all
361 dodirs=$(ALLDIRS) dot
362 # Default target for subdir_Makefile
363 subdir=src/roff/troff
366 $(TARGETS):
367 @$(MAKE) $(MDEFINES) do=$@ $(dodirs)
369 dot: FORCE
370 @$(MAKE) $(MDEFINES) srcdir=$(srcdir) VPATH=$(srcdir) \
371 -f $(top_srcdir)/Makefile.comm \
372 -f $(top_srcdir)/Makefile.sub $(do)
374 $(LIBDIRS): FORCE
375 @if test $(srcdir) = .; \
376 then srcdir=.; \
377 else srcdir=`cd $(srcdir); pwd`/$@; \
378 fi; \
379 test -d $@ || $(mkinstalldirs) $@; \
380 cd $@; \
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)
388 $(CPROGDIRS): FORCE
389 @if test $(srcdir) = .; \
390 then srcdir=.; \
391 else srcdir=`cd $(srcdir); pwd`/$@; \
392 fi; \
393 test -d $@ || $(mkinstalldirs) $@; \
394 cd $@; \
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)
402 $(CCPROGDIRS): FORCE
403 @if test $(srcdir) = .; \
404 then srcdir=.; \
405 else srcdir=`cd $(srcdir); pwd`/$@; \
406 fi; \
407 test -d $@ || $(mkinstalldirs) $@; \
408 cd $@; \
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)
416 $(DEVDIRS): FORCE
417 @if test $(srcdir) = .; \
418 then srcdir=.; \
419 else srcdir=`cd $(srcdir); pwd`/$@; \
420 fi; \
421 test -d $@ || $(mkinstalldirs) $@; \
422 cd $@; \
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) = .; \
430 then srcdir=.; \
431 else srcdir=`cd $(srcdir); pwd`/$@; \
432 fi; \
433 test -d $@ || $(mkinstalldirs) $@; \
434 cd $@; \
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`
444 .PHONY: dist
445 dist:
446 -rm -fr tmp
447 mkdir tmp
448 for d in $(DISTDIRS); do \
449 $(mkinstalldirs) tmp/$$d; \
450 done
451 srcdir=`cd $(srcdir); pwd`; \
452 cd tmp; \
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); \
457 done; \
458 $(MAKE) srcdir=$$srcdir VPATH=$$srcdir extraclean; \
459 for d in $(EXTRADIRS); do \
460 (cd $$d; $(MAKE) extraclean); \
461 done; \
462 rm -f Makefile; \
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
481 >Makefile.cfg
482 for var in $(MDEFINES); do \
483 echo "$$var" >>Makefile.cfg; \
484 done
486 Makefile: Makefile.in
487 $(SHELL) config.status
489 .PHONY: uninstall
490 uninstall: uninstall_sub uninstall_dirs
492 .PHONY: uninstall_dirs
493 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)
499 .PHONY: check
500 check:
502 FORCE:
504 .NOEXPORT: