We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FLAG = 1 all: $(MAKE) -C sub
FLAG = 1 all: echo $(FLAG)
M1: /proj/example % remake FLAG=2 remake -C sub remake[1]: Entering directory '/proj/example/sub' echo 2 2 remake[1]: Leaving directory '/proj/example/sub'
M1: /proj/example % remake -X FLAG=2 Reading makefiles... Updating makefiles... Updating goal targets... -> (/proj/example/Makefile:2) all: remake<0> c remake -C sub remake[1]: Entering directory '/proj/example/sub' echo 1 1 remake[1]: Leaving directory '/proj/example/sub'
remake version: GNU Make 4.3+dbg-1.5
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Makefile in example dir
Makefile in example/sub dir
Result of remake (correct):
Result of remake -X (incorrect, should echo 2 instead of 1):
remake version: GNU Make 4.3+dbg-1.5
The text was updated successfully, but these errors were encountered: