Skip to content

Instantly share code, notes, and snippets.

@philcryer
Created January 23, 2019 15:15
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 philcryer/71dbb7c6e58b53d65d3bd98ff3bb7c86 to your computer and use it in GitHub Desktop.
Save philcryer/71dbb7c6e58b53d65d3bd98ff3bb7c86 to your computer and use it in GitHub Desktop.
Makefile boilerplate example
all: say_hello generate
say_hello:
@echo "Hello World"
generate:
@echo "Creating empty text files..."
touch file-{1..10}.txt
clean:
@echo "Cleaning up..."
rm *.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment