Changeset ecb2755 in rtems


Ignore:
Timestamp:
04/19/99 13:44:03 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
db047f1
Parents:
b6529a3
Message:

Patch from Ralf Corsepius <corsepiu@…> to address this:

  • RTEMS's 'make depend' isn't a standard automake make target and is not

supported in automake supported subdirectories.

Location:
automake
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • automake/local.am

    rb6529a3 recb2755  
    22
    33## NOTE: This is a temporary work-around to keep
    4 ## "make debug" and "make debug_install" working.
     4## RTEMS's non automake standard make targets working.
    55## Once automake is fully integrated these make targets
    66## and this file will probably be removed
    77
    88debug-am:
    9 
    109debug: debug-am
     10.PHONY: debug debug-am
    1111
    1212debug_install-am:
    13 
    1413debug_install: debug_install-am
    15 
    16 .PHONY: debug debug_install debug-am
    17 
     14.PHONY: debug_install debug_install-am
    1815
    1916profile-am:
    20 
    2117profile: profile-am
     18.PHONY: profile profile-am
    2219
    2320profile_install-am:
    24 
    2521profile_install: profile_install-am
    26 
    27 .PHONY: profile profile_install profile-am
    28 
     22.PHONY: profile_install profile_install-am
    2923
    3024preinstall-am:
    31 
    3225preinstall: preinstall-am
    33 
    3426.PHONY: preinstall preinstall-am
    3527
     28clobber-am:
     29clobber: clobber-am
     30.PHONY: clobber clobber-am
     31
     32depend-am:
     33depend: depend-am
     34.PHONY: depend depend-am
  • automake/subdirs.am

    rb6529a3 recb2755  
    11## $Id$
    22
    3 ## Borrowed from automake-1.4, adapted to support RTEMS's
    4 ## "make debug", "make debug_install", "make profile", "make profile_install"
     3## Borrowed from automake-1.4 and adapted to RTEMS
    54
    65## NOTE: This is a temporary work-around to keep
    7 ## "make debug" and "make debug_install" working.
     6## RTEMS's non automake standard make targets working.
    87## Once automake is fully integrated these make targets
    98## and this file will probably be removed
    109
     10depend-recursive \
     11clobber-recursive \
    1112preinstall-recursive \
    12 debug-recursive debug_install-recursive \
    13 profile-recursive profile_install-recursive:
     13debug-recursive \
     14debug_install-recursive \
     15profile-recursive \
     16profile_install-recursive:
    1417        @set fnord $(MAKEFLAGS); amf=$$2; \
    1518        dot_seen=no; \
     
    3336
    3437debug: debug-recursive
     38.PHONY: debug-recursive
    3539
    3640debug_install: debug_install-recursive
     41.PHONY: debug_install-recursive
    3742
    3843profile: profile-recursive
     44.PHONY: profile-recursive
    3945
    4046profile_install: profile_install-recursive
     47.PHONY: profile-recursive
    4148
    4249preinstall: preinstall-recursive
     50.PHONY: preinstall-recursive
    4351
    44 .PHONY: \
    45 debug debug-recursive \
    46 debug_install \
    47 profile profile-recursive \
    48 profile_install \
    49 preinstall preinstall-recursive
     52clobber: clobber-recursive
     53.PHONY: clobber-recursive
     54
     55depend: depend-recursive
     56.PHONY: depend-recursive
Note: See TracChangeset for help on using the changeset viewer.