Update 2105-makefile/README

This commit is contained in:
vedri 2021-08-08 13:13:26 +00:00
parent 0212b71a9d
commit 073a5105a8
1 changed files with 4 additions and 4 deletions

View File

@ -20,13 +20,13 @@ Download the Makefile from this folder and save it into the folder with your sou
Example of usage and output in the command line:
``` sh
[directory]$ ls
$ ls
4-1-13.c Makefile
[directory]$ make 4-1-13
$ make 4-1-13
gcc -Wall -Wextra -pedantic 4-1-13.c -lm -o 4-1-13
[directory]$ ls
$ ls
4-1-13.c 4-1-13 Makefile
[directory]$ ./4-1-13
$ ./4-1-13
# code runs
```