[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
static-pattern local variables?
From: |
Britton Kerin |
Subject: |
static-pattern local variables? |
Date: |
Sat, 8 Jan 2022 14:00:45 -0900 |
I notice that implicit-rule local variables now work:
BBS = foo.bb
%.bb: SHELL = /usr/bin/perl
%.bb: .SHELLFLAGS = -w -E
$(BBS): %.bb: %.aa
not system("cp $< $@") or die;
any change we could take the next step and make static-pattern local
vars? Like so:
BBS = foo.bb
$(BBS): %.bb: SHELL = /usr/bin/perl
$(BBS): %.bb: .SHELLFLAGS = -w -E
$(BBS): %.bb: %.aa
not system("cp $< $@") or die;
I try to avoid non-static pattern rules because they seem to often
result in confusing behavior and confusing error messages, and I'd
like to have local variables correctly scoped.
Britton
- static-pattern local variables?,
Britton Kerin <=