Changeset 9078e097 in rtems
- Timestamp:
- 02/17/04 13:50:24 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 6ed6288
- Parents:
- 1204f22
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r1204f22 r9078e097 1 2004-02-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: DIST_SUBDIRS = $(SUBDIRS). 4 Rework dist-hook. 5 * configure.ac: Reflect changes to RTEMS_ENABLE_RTEMSBSP. 6 * aclocal/enable-rtemsbsp.m4: Add support for --disable-rtemsbsp. 7 1 8 2004-02-14 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 9 -
Makefile.am
r1204f22 r9078e097 9 9 10 10 SUBDIRS = make $(build_SUBDIRS) $(host_SUBDIRS) $(target_SUBDIRS) 11 DIST_SUBDIRS = $(SUBDIRS) 11 12 12 13 ACLOCAL_FILES = … … 28 29 EXTRA_DIST += config-ml.in 29 30 30 DIST_SUBDIRS = make 31 31 32 dist-hook: 32 cp -pR $(srcdir)/doc $(distdir)/doc 33 find $(distdir)/doc -name '*.t' -print | while read a; do \ 34 if test -f $${a}exi; then echo "rm $${a}exi"; rm -f $${a}exi; fi; done 35 cp -pR $(srcdir)/tools $(distdir)/tools 36 cp -pR $(srcdir)/c $(distdir)/c 37 cp -pR $(srcdir)/cpukit $(distdir)/cpukit 38 cp -pR $(srcdir)/testsuites $(distdir)/testsuites 39 cp -pR $(srcdir)/scripts $(distdir)/scripts 33 @files=`(cd $(srcdir); find doc cpukit c scripts testsuites tools \ 34 -name configure.ac -print | sed 's,/configure.ac,,' | sort)`; \ 35 for i in $$files; do \ 36 if test -f $(distdir)/$$i/configure.ac; then : ; \ 37 else \ 38 d=`dirname $(distdir)/$$i`; \ 39 $(mkdir_p) $$d;\ 40 echo "cp -pR $(srcdir)/$$i $(distdir)/$$i"; \ 41 cp -pR $(srcdir)/$$i $(distdir)/$$i; \ 42 fi; \ 43 done 40 44 rm -f $(distdir)/scripts/setup.cache 41 45 rm -f $(distdir)/scripts/*/*.spec -
aclocal/enable-rtemsbsp.m4
r1204f22 r9078e097 10 10 [AC_HELP_STRING([--enable-rtemsbsp="bsp1 bsp2 .."], 11 11 [BSPs to include in build])], 12 [case "${enableval}" in 13 yes|no) AC_MSG_ERROR([missing argument to --enable-rtemsbsp="bsp1 bsp2"]);; 14 *) $1=$enableval;; 15 esac],[$1=""]) 12 [case "${enable_rtemsbsp}" in 13 yes ) enable_rtemsbsp="" ;; 14 no ) enable_rtemsbsp="no" ;; 15 *) enable_rtemsbsp="$enable_rtemsbsp" ;; 16 esac],[enable_rtemsbsp=""]) 16 17 ]) -
configure.ac
r1204f22 r9078e097 31 31 RTEMS_ENABLE_TESTS 32 32 RTEMS_ENABLE_RTEMS_DEBUG 33 RTEMS_ENABLE_RTEMSBSP (dummy)33 RTEMS_ENABLE_RTEMSBSP 34 34 RTEMS_ENABLE_MULTILIB 35 35
Note: See TracChangeset
for help on using the changeset viewer.