Changeset 7af5e14 in rtems
- Timestamp:
- 01/08/01 19:22:25 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 73ee5105
- Parents:
- 81f6e8cc
- Location:
- c/src/lib/libbsp/a29k/portsw
- Files:
-
- 6 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/a29k/portsw/ChangeLog
r81f6e8cc r7af5e14 1 2001-01-08 Joel Sherrill <joel@OARcorp.com> 2 3 * Shared memory support removed since it was non-functional. 4 * shmsupp/.cvsignore, shmsupp/Makefile.am, shmsupp/addrconv.c, 5 shmsupp/getcfg.c, shmsupp/lock.c, shmsupp/mpisr.c: Removed. 6 * configure.in, Makefile.am, wrapup/Makefile.am: Modified to 7 reflect above. 8 1 9 2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 10 -
c/src/lib/libbsp/a29k/portsw/Makefile.am
r81f6e8cc r7af5e14 8 8 # wrapup is the one that actually builds and installs the library 9 9 # from the individual .rel files built in other directories 10 SUBDIRS = include start startup console shmsuppwrapup10 SUBDIRS = include start startup console wrapup 11 11 12 12 include $(top_srcdir)/../../bsp.am -
c/src/lib/libbsp/a29k/portsw/configure.in
r81f6e8cc r7af5e14 18 18 RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP) 19 19 RTEMS_CHECK_BSP_CACHE(RTEMS_BSP) 20 RTEMS_CHECK_MULTIPROCESSING(RTEMS_BSP)21 20 RTEMS_CANONICAL_HOST 22 23 AM_CONDITIONAL(HAS_MP,test "$HAS_MP" = "yes")24 21 25 22 RTEMS_PROJECT_ROOT … … 30 27 console/Makefile 31 28 include/Makefile 32 shmsupp/Makefile33 29 start/Makefile 34 30 startup/Makefile -
c/src/lib/libbsp/a29k/portsw/wrapup/Makefile.am
r81f6e8cc r7af5e14 4 4 5 5 AUTOMAKE_OPTIONS = foreign 1.4 6 7 if HAS_MP8 GENERIC_MP_REL_PIECES = shmdr9 endif10 GENERIC_PIECES += $(GENERIC_MP_REL_PIECES)11 6 12 7 if HAS_MP … … 19 14 # bummer; have to use $foreach since % pattern subst rules only replace 1x 20 15 OBJS = $(foreach piece, $(BSP_FILES), $(wildcard ../$(piece)/$(ARCH)/*.o)) \ 21 $(foreach piece, $(CPU_FILES), ../../../../libcpu/$(RTEMS_CPU)/$(piece)/$(ARCH)/$(piece).rel) \ 22 $(foreach piece, $(GENERIC_PIECES), ../../../$(piece)/$(ARCH)/$(piece).rel) 16 $(foreach piece, $(CPU_FILES), ../../../../libcpu/$(RTEMS_CPU)/$(piece)/$(ARCH)/$(piece).rel) 23 17 LIB = $(ARCH)/libbsp.a 24 18
Note: See TracChangeset
for help on using the changeset viewer.