Changeset 509f8351 in rtems


Ignore:
Timestamp:
10/24/00 21:59:16 (23 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
7ec7cf7
Parents:
5b53d97
Message:

2000-10-24 Ralf Corsepius <corsepiu@…>

  • macros/enable-hwapi.m4: Removed.
  • aclocal/rtems-top.m4, automake/compile.am, automake/lib.am: A small cleanup step towards gnu-canonicalization.
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r5b53d97 r509f8351  
     12000-10-24      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * macros/enable-hwapi.m4: Removed.
     4        * aclocal/rtems-top.m4, automake/compile.am, automake/lib.am:
     5        A small cleanup step towards gnu-canonicalization.
     6
    172000-09-14      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • aclocal/rtems-top.m4

    r5b53d97 r509f8351  
    1515ENDIF=endif
    1616AC_SUBST(ENDIF)
     17
     18## HACK to destinguish between using GNU and RTEMS canonicalization
     19AM_CONDITIONAL(RTEMS_CANONICALIZATION,test x=x)
    1720
    1821AC_ARG_WITH(target-subdir,
  • automake/compile.am

    r5b53d97 r509f8351  
    276276## FIXME: This will probably vanish, when GNU canonicalization will be
    277277## introduced
     278if RTEMS_CANONICALIZATION
    278279
    279280CC = $(CC_FOR_TARGET) $(GCCSPECS)
     
    295296STRIP_FOR_TARGET = @STRIP_FOR_TARGET@
    296297STRIP = $(STRIP_FOR_TARGET)
     298else
     299CC = @CC@ $(GCCSPECS)
     300CXX = @CXX@ $(GCCSPECS)
     301endif
    297302
    298303##
  • automake/lib.am

    r5b53d97 r509f8351  
    22##  $Id$
    33##
     4
     5if RTEMS_CANONICALIZATION
     6else
     7AR = @AR@
     8RANLIB = @RANLIB@
     9endif
    410
    511define make-library
Note: See TracChangeset for help on using the changeset viewer.