Changeset 003d4da in rtems
- Timestamp:
- Jan 20, 2002, 5:03:51 PM (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 5addee5
- Parents:
- 645a43d
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r645a43d r003d4da 1 2002-01-19 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * configure.ac: Add --enable-docs support. Add 4 RTEMS_HOST_CONFIG_SUBDIRS(doc). Remove doc/Makefile. 5 * Makefile.am: Add HOST_SUBDIRS to SUBDIRS. Remove doc from 6 hard-coded SUBDIRS. 7 * README.configure: Added a bit of information on this new option. 8 1 9 2002-01-18 Joel Sherrill <joel@OARcorp.com> 2 10 -
Makefile.am
r645a43d r003d4da 10 10 ACLOCAL_AMFLAGS = -I aclocal 11 11 12 SUBDIRS = doc make tools $(BUILD_SUBDIRS) $(TARGET_SUBDIRS)12 SUBDIRS = tools make $(BUILD_SUBDIRS) $(HOST_SUBDIRS) $(TARGET_SUBDIRS) 13 13 14 14 AUTOMAKE_FILES = automake/compile.am automake/host.am automake/lib.am \ -
README.configure
r645a43d r003d4da 33 33 --enable-tests 34 34 --enable-rdbg (only valid for i386 and some PowerPC BSPs) 35 --enable-docs 35 36 36 37 In addition, the following standard autoconf options are frequently … … 88 89 + set the RTEMS_BSP variable during make (see below). 89 90 90 The --enable-rtemsbsp= option configures RTEMS for a specific target91 architecture. Remember that the target specifies the CPU family while92 the BSP specifies the precise board you will be using. The following 93 targets are supported:91 The --enable-rtemsbsp= option configures RTEMS for a specific board 92 within a target architecture. Remember that the target specifies the 93 CPU family while the BSP specifies the precise board you will be using. 94 The following targets are supported: 94 95 95 96 (none) will build the host-based version on Linux, … … 110 111 sparc-rtems 111 112 bare see notes 112 113 113 114 The cross-compiler is set to $(target)-gcc by default. This can be 114 115 overridden by: … … 135 136 The sample tests are built by 'make all', do a 'make test' to build the full 136 137 test suite. 138 139 By default, --enable-docs is disabled and documentation is not built. 137 140 138 141 2.2 Build with Cygnus one-tree release -
configure.ac
r645a43d r003d4da 36 36 RTEMS_ENABLE_MULTILIB 37 37 38 AC_ARG_ENABLE([docs], 39 [AC_HELP_STRING([--enable-docs],[enable building documentation 40 (default:disabled)])]) 41 38 42 if test $host != $build; then 39 43 AC_MSG_WARN([] … … 60 64 RTEMS_HOST_CONFIG_SUBDIRS([tools/cpu]) 61 65 66 AS_IF([test x"${enable_docs}" = x"yes"], 67 [RTEMS_HOST_CONFIG_SUBDIRS([doc])]) 68 62 69 RTEMS_TARGET_CONFIG_SUBDIRS([c/make]) 63 70 if test x"$enable_multilib" = x"yes"; then … … 74 81 make/Templates/Makefile 75 82 make/compilers/Makefile 76 doc/Makefile])83 ]) 77 84 78 85 AC_OUTPUT
Note: See TracChangeset
for help on using the changeset viewer.