Skip to content

Instantly share code, notes, and snippets.

@tpiekarski
Created March 23, 2020 10:24
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 tpiekarski/49de421e3c77cafe2c040301bd6c509c to your computer and use it in GitHub Desktop.
Save tpiekarski/49de421e3c77cafe2c040301bd6c509c to your computer and use it in GitHub Desktop.
Parameters in Makefiles
something:
$(info Using parameters in Makefiles... The value of parameter is $(in))
@echo $(in)
@tpiekarski
Copy link
Author

$ make something in=some-data.csv

Using parameters in Makefiles... The value of parameter is some-data.csv
some-data.csv

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment