-
-
Save cjxgm/5c03af88f93f55ed1c22 to your computer and use it in GitHub Desktop.
simplified unnoticable makefile forwarding
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.PHONY: ${MAKECMDGOALS} | |
all $(filter-out all,${MAKECMDGOALS}): .forward | |
@# no op | |
.forward: | |
@${MAKE} --no-print-directory -C build ${MAKECMDGOALS} || true # known-issue: no error return value |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment