Using environment variables in make files

Suppose you have a .env file

NAME=Joe
URL=https://abc.com

Including this in your Makefile will bring those into scope.

Makefile

include .env
export

...