Skip to content

Instantly share code, notes, and snippets.

@giljr
Last active June 4, 2023 10:07
Show Gist options
  • Select an option

  • Save giljr/2b476d1ca4051ca8b6ccdf1baa46262b to your computer and use it in GitHub Desktop.

Select an option

Save giljr/2b476d1ca4051ca8b6ccdf1baa46262b to your computer and use it in GitHub Desktop.
all: build
build: msg3 msg2 msg1
msg1: msg2
@echo "3 - Exit make. Bye. Thank you!"
msg2: msg3
@touch file1.txt
@echo "2 - Creating file1.txt."
msg3:
@echo "1 - Init make program."
clean:
@rm -f file1.txt
@echo "O diretorio esta limpo!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment