From 6aa9d31677d36a81ce4e1442af41ca1d85de1454 Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Fri, 9 Oct 2020 06:17:33 -0400 Subject: [PATCH] Update gitignore and makefile output --- .gitignore | 35 ++++++++++++++++++++++++++++++++++- makefile | 4 ++-- 2 files changed, 36 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 5b521d0..015283e 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,34 @@ -a6 +### + # 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 66789df..f90bd2f 100644 --- a/makefile +++ b/makefile @@ -1,4 +1,4 @@ all: - gcc -Wall -Wpedantic -std=c99 Main.c error.c HelperFunctions.c -g -o a6 -pthread -lmagic + gcc -Wall -Wpedantic -std=c99 Main.c error.c HelperFunctions.c -g -o a6.out -pthread -lmagic test: - gcc -Wall -Wpedantic -std=c99 Main_No_Threads.c error.c HelperFunctions.c -g -o a6 -pthread -lmagic + gcc -Wall -Wpedantic -std=c99 Main_No_Threads.c error.c HelperFunctions.c -g -o a6.out -pthread -lmagic -- GitLab