Last active
June 4, 2023 10:07
-
-
Save giljr/2b476d1ca4051ca8b6ccdf1baa46262b to your computer and use it in GitHub Desktop.
1 - make manual https://www.gnu.org/software/make/manual/html_node/index.html | 2 - Learn Makefiles by examples https://makefiletutorial.com/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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