diff --git a/.gitignore b/.gitignore index 7e785c1f48765708b6d244eac5093e255e4ebb03..015283e397942d9251b115e8c1cf90c0d77f63ef 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,34 @@ -coolSort +### + # 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 365f25e916f438bcd98809f3631ceaf684e5ce9b..7466c45e67d1bfcdddb020567d7b749c02ce0796 100644 --- a/makefile +++ b/makefile @@ -1,2 +1,2 @@ all: - gcc -Wall -Wpedantic -std=c99 *.c -g -o coolSort -pthread + gcc -Wall -Wpedantic -std=c99 *.c -g -o coolSort.out -pthread