Skip to content

Instantly share code, notes, and snippets.

@meatballhat
Last active December 31, 2015 02:39
Show Gist options
  • Select an option

  • Save meatballhat/7922378 to your computer and use it in GitHub Desktop.

Select an option

Save meatballhat/7922378 to your computer and use it in GitHub Desktop.
makefile newline escapes
foo:
STICKY=derp ; \
echo $$STICKY
bar:
FLAKY=herp
echo $$FLAKY
make foo
#=> STICKY=derp ; \
#=>         echo $STICKY
#=> derp
make bar
#=> FLAKY=herp
#=> echo $FLAKY
#=> 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment