Skip to content

Instantly share code, notes, and snippets.

@cjxgm
Forked from o11c/Makefile
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cjxgm/5c03af88f93f55ed1c22 to your computer and use it in GitHub Desktop.
Save cjxgm/5c03af88f93f55ed1c22 to your computer and use it in GitHub Desktop.
simplified unnoticable makefile forwarding
.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