Changeset 7001a48 in rtems
- Timestamp:
- 06/18/02 12:29:02 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 75fb648b
- Parents:
- b8ad66c
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/ChangeLog
rb8ad66c r7001a48 1 2002-06-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * wrapup/Makefile.am: Use relative path to lib*.a for 4 LIBCSUPPORT_OBJS, LIBBLOCK_OBJS, LIBDOSFS_OBJS, LIBIMFS_OBJS. 5 1 6 2002-06-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 7 -
c/src/exec/wrapup/Makefile.am
rb8ad66c r7001a48 24 24 endif 25 25 26 LIBCSUPPORT_OBJS = $(wildcard ../libcsupport/src/$(ARCH)/*.o)26 LIBCSUPPORT_OBJS = ../libcsupport/$(ARCH)/libcsupport.a 27 27 28 LIBBLOCK_OBJS = $(wildcard ../libblock/$(ARCH)/*.o)28 LIBBLOCK_OBJS = ../libblock/src/$(ARCH)/libblock.a 29 29 if !UNIX 30 LIBDOSFS_OBJS = $(wildcard ../libfs/src/dosfs/$(ARCH)/*.o)30 LIBDOSFS_OBJS = ../libfs/src/dosfs/$(ARCH)/libdosfs.a 31 31 endif 32 LIBIMFS_OBJS = $(wildcard ../libfs/src/imfs/$(ARCH)/*.o)32 LIBIMFS_OBJS = ../libfs/src/imfs/$(ARCH)/libimfs.a 33 33 34 34 if HAS_NETWORKING -
cpukit/ChangeLog
rb8ad66c r7001a48 1 2002-06-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * wrapup/Makefile.am: Use relative path to lib*.a for 4 LIBCSUPPORT_OBJS, LIBBLOCK_OBJS, LIBDOSFS_OBJS, LIBIMFS_OBJS. 5 1 6 2002-06-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 7 -
cpukit/wrapup/Makefile.am
rb8ad66c r7001a48 24 24 endif 25 25 26 LIBCSUPPORT_OBJS = $(wildcard ../libcsupport/src/$(ARCH)/*.o)26 LIBCSUPPORT_OBJS = ../libcsupport/$(ARCH)/libcsupport.a 27 27 28 LIBBLOCK_OBJS = $(wildcard ../libblock/$(ARCH)/*.o)28 LIBBLOCK_OBJS = ../libblock/src/$(ARCH)/libblock.a 29 29 if !UNIX 30 LIBDOSFS_OBJS = $(wildcard ../libfs/src/dosfs/$(ARCH)/*.o)30 LIBDOSFS_OBJS = ../libfs/src/dosfs/$(ARCH)/libdosfs.a 31 31 endif 32 LIBIMFS_OBJS = $(wildcard ../libfs/src/imfs/$(ARCH)/*.o)32 LIBIMFS_OBJS = ../libfs/src/imfs/$(ARCH)/libimfs.a 33 33 34 34 if HAS_NETWORKING
Note: See TracChangeset
for help on using the changeset viewer.