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
The current Makefile includes this line which interprets the goalname as a Makefile name and tries to import it.
Makefile
-include mk/$(MAKECMDGOALS).mk
In my case, this led to a build failure because I still had an old acvp.mk lying around which then got triggered by make avcp -- a valid target!.
acvp.mk
make avcp
Task: Rewrite the Makefile so that we specifically include what we need per goal, rather than try-including the goalname as a Makefile.
The text was updated successfully, but these errors were encountered:
potsrevennil
No branches or pull requests
The current
Makefile
includes this line which interprets the goalname as a Makefile name and tries to import it.In my case, this led to a build failure because I still had an old
acvp.mk
lying around which then got triggered bymake avcp
-- a valid target!.Task: Rewrite the
Makefile
so that we specifically include what we need per goal, rather than try-including the goalname as a Makefile.The text was updated successfully, but these errors were encountered: