diff --git a/.gitignore b/.gitignore index d3076f80a16b2f1137827783ac4576bc6d1b2f6b..015283e397942d9251b115e8c1cf90c0d77f63ef 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,34 @@ -Droll +### + # GitIgnore file for C Language projects. + # See https://git-scm.com/docs/gitignore for documentation. + # + # Version 1.0 + ## + + +# Ignore environment settings. +.vs/ +.vscode/ +vs/ +vscode/ + + +# Ignore temporary files. +[Tt]emp/ +[Tt]empfiles/ +[Tt]emp_files/ +*.tmp +*.temp + + +# Ignore compiled files. +*.o +*.obj +*.out + + +# Ignore logfiles. +[Ll]og/ +[Ll]ogs/ +*.log +*.log.* diff --git a/makefile b/makefile index 742bdf5ed475cd73bd6f90226fde48a0a164ef1d..465904d26a25ca6f765cecc7cfe57bfcae2120c2 100644 --- a/makefile +++ b/makefile @@ -1,3 +1,3 @@ all: - gcc -Wall -Wpedantic -std=c99 *.c -g -o Droll + gcc -Wall -Wpedantic -std=c99 *.c -g -o Droll.out