Changeset 9bb5b9d in rtems
- Timestamp:
- 11/05/04 08:30:18 (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- bffdb82
- Parents:
- 07a984b
- Location:
- c/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/ChangeLog
r07a984b r9bb5b9d 1 2004-11-05 Ralf Corsepius <ralf_corsepius@rtems.org> 2 3 * configure.ac: Remove check for libbsp/${RTEMS_CPU}. 4 Add dependency tracking for *.cfgs. 5 * Makefile.am: Add dependency tracking for *.cfg. 6 1 7 2004-11-03 Ralf Corsepius <ralf_corsepius@rtems.org> 2 8 -
c/src/Makefile.am
r07a984b r9bb5b9d 28 28 cp $< $@ 29 29 30 make/custom/%.cfg: $(srcdir)/$(cfg_dir)/custom/%.cfg31 cp $< $@32 33 30 noinst_DATA += make/custom/default.cfg 34 31 DISTCLEANFILES += make/custom/default.cfg … … 48 45 DISTCLEANFILES += @host_alias@-@RTEMS_BSP@.pc 49 46 47 DISTCLEANFILES += $(DEPDIR)/cfg.P 48 include $(DEPDIR)/cfg.P 49 50 50 include $(top_srcdir)/automake/subdirs.am 51 51 include $(top_srcdir)/automake/local.am -
c/src/configure.ac
r07a984b r9bb5b9d 20 20 RTEMS_ENABLE_MULTIPROCESSING 21 21 RTEMS_ENV_RTEMSBSP 22 23 # Is this a supported CPU?24 AC_MSG_CHECKING([if cpu $RTEMS_CPU is supported])25 # FIXME: Temporary hack26 if test -d "$srcdir/lib/libbsp/$RTEMS_CPU"; then27 AC_MSG_RESULT(yes)28 else29 AC_MSG_ERROR(no)30 fi31 22 32 23 AC_ARG_ENABLE(rpcgen, … … 54 45 55 46 AS_MKDIR_P([make/custom]) 47 AM_SET_DEPDIR 48 test -d ${DEPDIR} || mkdir ${DEPDIR} 49 50 rm -f ${DEPDIR}/cfg.P 51 echo "# Do not edit - automatically generated by" > ${DEPDIR}/cfg.P 52 echo "# $0" >> ${DEPDIR}/cfg.P 56 53 57 54 # Collect and copy the BSP's make/custom/*.cfg files from the toplevel make 58 55 # directory into the build tree's <bsp>/make/custom subdirectories 59 cfg_dir="${RTEMS_TOPdir}/make" 60 CUSTOM_CFG_FILES="" 56 CUSTOM_CFG_FILES= 61 57 f="${RTEMS_BSP}.cfg" 62 58 while test -n "$f"; do 63 if test -r "${srcdir}/${cfg_dir}/custom/$f"; then 64 cp ${srcdir}/${cfg_dir}/custom/$f make/custom/$f 59 cfg_file= 60 _RTEMS_CHECK_CUSTOM_BSP([$f],cfg_file) 61 if test -n "${cfg_file}"; then 62 cp ${cfg_file} make/custom/$f 63 echo "make/custom/$f: ${cfg_file}" >> ${DEPDIR}/cfg.P 64 echo " cp ${cfg_file} make/custom/$f" >> ${DEPDIR}/cfg.P 65 65 CUSTOM_CFG_FILES="$CUSTOM_CFG_FILES make/custom/$f" 66 f=`grep "^include.*make/custom" ${ srcdir}/${cfg_dir}/custom/$f\66 f=`grep "^include.*make/custom" ${cfg_file} \ 67 67 | sed \ 68 68 -e 's%^.*custom\/%%' \
Note: See TracChangeset
for help on using the changeset viewer.