Changeset 372e4e2 in rtems


Ignore:
Timestamp:
09/13/00 13:08:11 (23 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
943399b
Parents:
2094513
Message:

2000-09-13 Ralf Corsepius <corsepiu@…>

  • aclocal/rtems-top.m4: Add ENDIF-hack.
  • automake/compile.am: Add include $(DEPENDS) + ENDIF-hack.
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r2094513 r372e4e2  
     12000-09-13      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * aclocal/rtems-top.m4: Add ENDIF-hack.
     4        * automake/compile.am: Add include $(DEPENDS) + ENDIF-hack.
     5
    162000-09-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    27
  • aclocal/rtems-top.m4

    r2094513 r372e4e2  
    1111AC_BEFORE([$0], [AC_CONFIG_AUX_DIR])dnl
    1212AC_BEFORE([$0], [AM_INIT_AUTOMAKE])dnl
     13
     14## HACK to allow gnu-make conditionals in automake-Makefiles.
     15ENDIF=endif
     16AC_SUBST(ENDIF)
    1317
    1418AC_ARG_WITH(target-subdir,
  • automake/compile.am

    r2094513 r372e4e2  
    175175        mv $(DEPEND).tmp $(DEPEND)
    176176depend: depend-am
     177
     178# pull in dependencies if they exist 
     179ifeq (${DEPEND},$(wildcard ${DEPEND}))
     180include ${DEPEND}
     181@ENDIF@
     182
    177183
    178184# spell out all the LINK_FILE's, rather than using -lbsp, so
Note: See TracChangeset for help on using the changeset viewer.