Changeset 35b2275 in rtems
- Timestamp:
- 07/22/02 09:17:40 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- ac7c680
- Parents:
- 14620166
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r14620166 r35b2275 1 2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * aclocal/bsp-configure.m4: Add RTEMS_CHECK_MULTIPROCESSING. 4 * automake/compile.am: Add test -d $(ARCH) || mkdir $(ARCH) to all 5 compilation rules (Work-around to an automake bug). 6 * automake/lib.am: Add test -d $(ARCH) || mkdir $(ARCH) to 7 make-library. 8 1 9 2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 10 -
aclocal/bsp-configure.m4
r14620166 r35b2275 15 15 AM_CONFIG_HEADER([include/bspopts.h]) 16 16 RTEMS_PROJECT_ROOT 17 18 RTEMS_CHECK_MULTIPROCESSING 17 19 ]) -
automake/compile.am
r14620166 r35b2275 108 108 109 109 ${ARCH}/%.o: %.c 110 test -d $(ARCH) || mkdir $(ARCH) 110 111 ${COMPILE} -o $@ -c $< 111 112 112 113 ${ARCH}/%.o: %.cc 114 test -d $(ARCH) || mkdir $(ARCH) 113 115 ${CXXCOMPILE} -o $@ -c $< 114 116 115 117 ${ARCH}/%.o: %.cpp 118 test -d $(ARCH) || mkdir $(ARCH) 116 119 ${CXXCOMPILE} -o $@ -c $< 117 120 118 121 ${ARCH}/%.o: %.cxx 122 test -d $(ARCH) || mkdir $(ARCH) 119 123 ${CXXCOMPILE} -o $@ -c $< 120 124 121 125 ${ARCH}/%.o: %.C 126 test -d $(ARCH) || mkdir $(ARCH) 122 127 ${CXXCOMPILE} -o $@ -c $< 123 128 124 129 ${ARCH}/%.o: %.S 130 test -d $(ARCH) || mkdir $(ARCH) 125 131 ${ASCOMPILE} -DASM -o $@ -c $< 126 132 127 133 # Make foo.rel from foo.o 128 134 ${ARCH}/%.rel: ${ARCH}/%.o 135 test -d $(ARCH) || mkdir $(ARCH) 129 136 ${make-rel} 130 137 -
automake/lib.am
r14620166 r35b2275 10 10 11 11 define make-library 12 test -d $(ARCH) || mkdir $(ARCH) 12 13 $(RM) $@ 13 14 $(AR) $(ARFLAGS) $@ $^ … … 15 16 endef 16 17 17 $(PROJECT_RELEASE)/lib $(MULTISUBDIR):18 $(PROJECT_RELEASE)/lib: 18 19 @$(mkinstalldirs) $@ 19 20 20 TMPINSTALL_FILES = $(PROJECT_RELEASE)/lib $(MULTISUBDIR)21 TMPINSTALL_FILES = $(PROJECT_RELEASE)/lib 21 22 22 23 .PRECIOUS: $(LIB)
Note: See TracChangeset
for help on using the changeset viewer.