From 4c022766e04a9aa8d1a52df5d82b6439d9b816fa Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Fri, 9 Oct 2020 06:13:29 -0400 Subject: [PATCH] Update gitignore and makefile output --- .gitignore | 35 ++++++++++++++++++++++++++++++++++- makefile | 2 +- 2 files changed, 35 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7e785c1..015283e 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 365f25e..7466c45 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 -- GitLab