# It's fine to assign variables after make has snapped deps. all: foo bar foo: $(eval MYVAR=value) touch foo bar: echo "The variable says $(MYVAR)" touch bar