summaryrefslogtreecommitdiffstats
path: root/doc/gnu_docs/Tool_Doc_Instructions
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2006-08-27 15:07:35 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2006-08-27 15:07:35 +0000
commit45bcd282b4bedb488557894ab5a77774b0b66e60 (patch)
tree7f6e8b45a33226e151ea2834f4787437c27d1734 /doc/gnu_docs/Tool_Doc_Instructions
parentHandle the noarch rpms. Dump the file list. (diff)
downloadrtems-45bcd282b4bedb488557894ab5a77774b0b66e60.tar.bz2
2006-08-27 Joel Sherrill <joel@OARcorp.com>
* Makefile.am, configure.ac, develenv/direct.t: Remove gnu_docs. Now included with RPMs. * gnu_docs/.cvsignore, gnu_docs/ChangeLog, gnu_docs/Makefile.am, gnu_docs/Tool_Doc_Instructions, gnu_docs/gen_docs, gnu_docs/gnu_footer.html, gnu_docs/gnu_header.html, gnu_docs/index.html, gnu_docs/mk_install_dir, gnu_docs/refcard.html, gnu_docs/rtems_tools_index.html: Removed.
Diffstat (limited to 'doc/gnu_docs/Tool_Doc_Instructions')
-rw-r--r--doc/gnu_docs/Tool_Doc_Instructions42
1 files changed, 0 insertions, 42 deletions
diff --git a/doc/gnu_docs/Tool_Doc_Instructions b/doc/gnu_docs/Tool_Doc_Instructions
deleted file mode 100644
index 7c2890982b..0000000000
--- a/doc/gnu_docs/Tool_Doc_Instructions
+++ /dev/null
@@ -1,42 +0,0 @@
-#
-# $Id$
-#
-
-Apparently, the tool documentation is tough to build without configuring
-in the tool source directory. So you need to do some magic to make
-this happen. In addition, the makefiles included with the tools
-only support building dvi and info. So this directory is
-trying to help finish out building the tool documentation.
-
-# Odd Notes:
-#
-# binutils/ld: May have to copy bfdsumm.texi from config/bfd to ld
-# gcc: no rule to build java.dvi
-
-# for binutils, gcc, and gdb
-mkdir doc_build
-cp -r binutils-XXX gcc-XXX gdb-XXX newlib-XXX doc_build
-cd TOOL-XXX
-./configure --target=i386-rtems --prefix=/usr3/tmp/DOCTMP
-make info dvi
-
-# for newlib we have to do the build differently. It actually needs
-# to be configured and built for an RTEMS target so pick something
-# you have tools installed for. Hopefully, this will be a target
-# without many multilib variants. The actual target is not relevant
-# since the documentation is always the same.
-
-mkdir b
-cd b
-../newlib-1.8.2/configure --target=i386-rtems --prefix=/usr3/tmp/DOCTMP
-make
-make info dvi
-cd ../newlib-1.8.2
-find newlib/ -name "*.t*" | cpio -pdum ../b/i386-rtems/
-find etc/ -name "*.t*" | cpio -pdum ../b
-cd ../b
-# run the script
-
-
-
-