mirror of
https://github.com/gnustep/tools-make.git
synced 2025-05-06 03:40:44 +00:00
Converted the %.variables rule to the standard indentation ... it's now
enough easy not to require custom indentation :-) git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@13042 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e2539bd975
commit
face05f9f7
1 changed files with 11 additions and 11 deletions
|
@ -212,13 +212,13 @@ after-check::
|
||||||
# any, then subprojects (FIXME - remove framework tools and replace
|
# any, then subprojects (FIXME - remove framework tools and replace
|
||||||
# this with a better API which works for everything and not only
|
# this with a better API which works for everything and not only
|
||||||
# frameworks and not only tools)
|
# frameworks and not only tools)
|
||||||
|
|
||||||
%.variables: %.tools %.subprojects
|
%.variables: %.tools %.subprojects
|
||||||
@ \
|
@ instance=$(basename $(basename $*)); \
|
||||||
instance=$(basename $(basename $*)); \
|
operation=$(subst .,,$(suffix $(basename $*))); \
|
||||||
operation=$(subst .,,$(suffix $(basename $*))); \
|
type=$(subst -,_,$(subst .,,$(suffix $*))); \
|
||||||
type=$(subst -,_,$(subst .,,$(suffix $*))); \
|
echo Making $$operation for $$type $$instance...; \
|
||||||
echo Making $$operation for $$type $$instance...; \
|
$(MAKE) -f $(MAKEFILE_NAME) --no-print-directory --no-keep-going \
|
||||||
$(MAKE) -f $(MAKEFILE_NAME) --no-print-directory --no-keep-going \
|
|
||||||
internal-$${type}-$$operation \
|
internal-$${type}-$$operation \
|
||||||
GNUSTEP_TYPE=$$type \
|
GNUSTEP_TYPE=$$type \
|
||||||
GNUSTEP_INSTANCE=$$instance \
|
GNUSTEP_INSTANCE=$$instance \
|
||||||
|
|
Loading…
Reference in a new issue