Changeset ecb2755 in rtems for automake/subdirs.am


Ignore:
Timestamp:
04/19/99 13:44:03 (25 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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.