Changeset a1cf46b in rtems
- Timestamp:
- 03/25/04 05:19:36 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 7c48a2e8
- Parents:
- e1908de
- Location:
- c/src/ada-tests
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/ada-tests/ChangeLog
re1908de ra1cf46b 1 2004-03-25 Ralf Corsepius <ralf_corsepius@rtems.org> 2 3 * configure.ac: Add 2nd arg to RTEMS_TOP. 4 Unconditionally configure MP-directories. 5 * Makefile.am: Don't include @RTEMS_BSP@.cfg. 6 Add DIST_SUBDIRS comprising MP-subdirs. 7 * samples/Makefile.am: Add DIST_SUBDIRS comprising MP-subdirs. 8 1 9 2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 10 -
c/src/ada-tests/Makefile.am
re1908de ra1cf46b 3 3 ACLOCAL_AMFLAGS = -I aclocal -I ../../../testsuites/aclocal 4 4 5 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg6 5 include $(top_srcdir)/../../../testsuites/automake/compile.am 7 6 8 7 SUBDIRS = support samples sptests tmtests 9 10 8 if HAS_MP 11 9 SUBDIRS += mptests 12 10 endif 11 12 DIST_SUBDIRS = support samples sptests tmtests mptests 13 13 14 14 EXTRA_DIST = ada.am -
c/src/ada-tests/configure.ac
re1908de ra1cf46b 6 6 AC_INIT([rtems-ada-tests],[_RTEMS_VERSION],[rtems-bugs@rtems.com]) 7 7 AC_CONFIG_SRCDIR([support]) 8 RTEMS_TOP( ../../..)8 RTEMS_TOP([../../..],[]) 9 9 10 10 RTEMS_CANONICAL_TARGET_CPU … … 47 47 samples/hello/Makefile 48 48 samples/ticker/Makefile 49 ])50 51 if test "$HAS_MP" = "yes"; then52 AC_CONFIG_FILES([53 49 samples/base_mp/Makefile 54 50 samples/base_mp/node1/Makefile 55 51 samples/base_mp/node2/Makefile 56 52 ]) 57 fi58 53 59 54 AC_CONFIG_FILES([ … … 118 113 ]) 119 114 120 if test "$HAS_MP" = "yes"; then121 115 AC_CONFIG_FILES([ 122 116 mptests/Makefile … … 138 132 #mptests/mp13/Makefile 139 133 #mptests/mp14/Makefile 140 fi141 134 142 135 AC_OUTPUT -
c/src/ada-tests/samples/Makefile.am
re1908de ra1cf46b 6 6 SUBDIRS += base_mp 7 7 endif 8 DIST_SUBDIRS = hello ticker base_sp base_mp 8 9 9 10 include $(top_srcdir)/../../../testsuites/automake/subdirs.am
Note: See TracChangeset
for help on using the changeset viewer.