diff options
author | K. Richard Pixley <rich@cygnus> | 1992-03-08 07:47:55 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1992-03-08 07:47:55 +0000 |
commit | 787c6bfe7021f84607854e45e1f7297e957a1094 (patch) | |
tree | 07f9d37129cba4a284ef8ea3ecc8102827c29b0c /gdb/doc | |
parent | 335413d8ea92576b763a43a1fde95c25eaa5e231 (diff) | |
download | gdb-787c6bfe7021f84607854e45e1f7297e957a1094.zip gdb-787c6bfe7021f84607854e45e1f7297e957a1094.tar.gz gdb-787c6bfe7021f84607854e45e1f7297e957a1094.tar.bz2 |
This is the second batch of makefile changes. Libg++ makefiles were
checked in earlier. These are Makefiles relevant to the progressive
release currently in progress.
* added exec_prefix
* default bindir now exec_prefix/bin
* default libdir now exec_prefix/lib
* default mandir now prefix/man
* default infodir now prefix/info
* added oldincludedir, default NULL
* remove all traces of the old -subdirs and -namesubdir support,
including code, for loops, and all subdir/unsubdir stuff.
* remove old style staging targets {de-}stage[1234], comparison,
bootstrapN, from all but the bootstrappable tools.
* added check targets.
* removed any "Last Mod" lines.
* forced copyrights to '92 and shifted some from Cygnus to FSF.
* added tooldir and program_prefix where needed.
* updated texinfo and man pages, removed all references to multiple
hosts or targets.
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 11 | ||||
-rw-r--r-- | gdb/doc/Makefile.in | 35 |
2 files changed, 30 insertions, 16 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 4bbfcb5..f3cc169 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,14 @@ +Sat Mar 7 18:44:50 1992 K. Richard Pixley (rich@rtl.cygnus.com) + + * Makefile.in: commented out gdb-all.texinfo rule. This is + temporary. + +Wed Feb 26 18:04:40 1992 K. Richard Pixley (rich@cygnus.com) + + * Makefile.in, configure.in: removed traces of namesubdir, + -subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced + copyrights to '92, changed some from Cygnus to FSF. + Fri Dec 13 09:47:31 1991 John Gilmore (gnu at cygnus.com) * gdb.texinfo: Improve how we ask for bug reports. diff --git a/gdb/doc/Makefile.in b/gdb/doc/Makefile.in index cd71372..59f0a12 100644 --- a/gdb/doc/Makefile.in +++ b/gdb/doc/Makefile.in @@ -1,4 +1,4 @@ -##Copyright (C) 1991 Free Software Foundation, Inc. +##Copyright (C) 1991, 1992 Free Software Foundation, Inc. # Makefile for GDB documentation. # This file is part of GDB. @@ -21,10 +21,12 @@ srcdir = . prefix = /usr/local -bindir = $(prefix)/bin +exec_prefix = $(prefix) +bindir = $(exec_prefix)/bin +libdir = $(exec_prefix)/lib + datadir = $(prefix)/lib -libdir = $(prefix)/lib -mandir = $(datadir)/man +mandir = $(prefix)/man man1dir = $(mandir)/man1 man2dir = $(mandir)/man2 man3dir = $(mandir)/man3 @@ -34,7 +36,7 @@ man6dir = $(mandir)/man6 man7dir = $(mandir)/man7 man8dir = $(mandir)/man8 man9dir = $(mandir)/man9 -infodir = $(datadir)/info +infodir = $(prefix)/info includedir = $(prefix)/include docdir = $(datadir)/doc @@ -173,16 +175,17 @@ gdbVN.m4 : $(srcdir)/${gdbdir}/Makefile.in # source directory for the benefit of people who *don't* use this makefile, # VPATH will often tell make not to bother building it, because the one # in the srcdir is up to date. (if not, then make should build one here). -gdb-all.texi: ${SFILES_DOCDIR} - if [ ! -f ./gdbVN.m4 ]; then \ - ln -s $(srcdir)/gdbVN.m4 . || \ - ln $(srcdir)/gdbVN.m4 . || \ - cp $(srcdir)/gdbVN.m4 . ; else true; fi - rm -f foobus.texinfo - ${M4} $(srcdir)/pretex.m4 $(srcdir)/none.m4 $(srcdir)/all.m4 \ - gdbVN.m4 $(srcdir)/gdb.texinfo >foobus.texinfo - rm -f gdb-all.texi - mv foobus.texinfo ./gdb-all.texi + +#gdb-all.texi: ${SFILES_DOCDIR} +# if [ ! -f ./gdbVN.m4 ]; then \ +# ln -s $(srcdir)/gdbVN.m4 . || \ +# ln $(srcdir)/gdbVN.m4 . || \ +# cp $(srcdir)/gdbVN.m4 . ; else true; fi +# rm -f foobus.texinfo +# ${M4} $(srcdir)/pretex.m4 $(srcdir)/none.m4 $(srcdir)/all.m4 \ +# gdbVN.m4 $(srcdir)/gdb.texinfo >foobus.texinfo +# rm -f gdb-all.texi +# mv foobus.texinfo ./gdb-all.texi # GDB MANUAL: TeX dvi file gdb.dvi : gdb-${CONFIG}.texi rluser.texinfo inc-hist.texi @@ -197,7 +200,7 @@ gdb.dvi : gdb-${CONFIG}.texi rluser.texinfo inc-hist.texi # cope with all the markup. In the meantime, we distribute the info # files gdb.info: gdb-${CONFIG}.texi - $(MAKEINFO) -o ./gdb.info gdb-${CONFIG}.texi + $(MAKEINFO) -o ./gdb.info $(srcdir)/gdb-${CONFIG}.texi # GDB MANUAL: roff translations # Try to use a recent texi2roff. v2 was put on prep in jan91. |