Skip to content

Instantly share code, notes, and snippets.

@nbari
Created March 17, 2017 09:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nbari/08593ca27e7037b682c2d2c76ddd5a33 to your computer and use it in GitHub Desktop.
Save nbari/08593ca27e7037b682c2d2c76ddd5a33 to your computer and use it in GitHub Desktop.
define variable within makefile rule
.PHONY: all test clean
GLOBAL="spirituosen"
all:
@echo ${GLOBAL}
test:
$(eval GLOBAL="trinken")
@echo ${GLOBAL}
kai: all test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment