Changeset ecb2755 in rtems
- Timestamp:
- 04/19/99 13:44:03 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- db047f1
- Parents:
- b6529a3
- Location:
- automake
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
automake/local.am
rb6529a3 recb2755 2 2 3 3 ## 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. 5 5 ## Once automake is fully integrated these make targets 6 6 ## and this file will probably be removed 7 7 8 8 debug-am: 9 10 9 debug: debug-am 10 .PHONY: debug debug-am 11 11 12 12 debug_install-am: 13 14 13 debug_install: debug_install-am 15 16 .PHONY: debug debug_install debug-am 17 14 .PHONY: debug_install debug_install-am 18 15 19 16 profile-am: 20 21 17 profile: profile-am 18 .PHONY: profile profile-am 22 19 23 20 profile_install-am: 24 25 21 profile_install: profile_install-am 26 27 .PHONY: profile profile_install profile-am 28 22 .PHONY: profile_install profile_install-am 29 23 30 24 preinstall-am: 31 32 25 preinstall: preinstall-am 33 34 26 .PHONY: preinstall preinstall-am 35 27 28 clobber-am: 29 clobber: clobber-am 30 .PHONY: clobber clobber-am 31 32 depend-am: 33 depend: depend-am 34 .PHONY: depend depend-am -
automake/subdirs.am
rb6529a3 recb2755 1 1 ## $Id$ 2 2 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 5 4 6 5 ## 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. 8 7 ## Once automake is fully integrated these make targets 9 8 ## and this file will probably be removed 10 9 10 depend-recursive \ 11 clobber-recursive \ 11 12 preinstall-recursive \ 12 debug-recursive debug_install-recursive \ 13 profile-recursive profile_install-recursive: 13 debug-recursive \ 14 debug_install-recursive \ 15 profile-recursive \ 16 profile_install-recursive: 14 17 @set fnord $(MAKEFLAGS); amf=$$2; \ 15 18 dot_seen=no; \ … … 33 36 34 37 debug: debug-recursive 38 .PHONY: debug-recursive 35 39 36 40 debug_install: debug_install-recursive 41 .PHONY: debug_install-recursive 37 42 38 43 profile: profile-recursive 44 .PHONY: profile-recursive 39 45 40 46 profile_install: profile_install-recursive 47 .PHONY: profile-recursive 41 48 42 49 preinstall: preinstall-recursive 50 .PHONY: preinstall-recursive 43 51 44 .PHONY: \ 45 debug debug-recursive \ 46 debug_install \ 47 profile profile-recursive \ 48 profile_install \ 49 preinstall preinstall-recursive 52 clobber: clobber-recursive 53 .PHONY: clobber-recursive 54 55 depend: depend-recursive 56 .PHONY: depend-recursive
Note: See TracChangeset
for help on using the changeset viewer.