From 6750851f9a7536862a5c110770f83f6642dacfcd Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Fri, 9 Oct 2020 07:17:44 -0400 Subject: [PATCH] Update gitignore and makefile output --- .gitignore | 36 ++++++++++++++++++++++++++++++++++-- makefile | 4 ++-- 2 files changed, 36 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index ef9e4e9..015283e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,34 @@ -FileCopy -threading +### + # 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 0483719..44743ea 100644 --- a/makefile +++ b/makefile @@ -1,3 +1,3 @@ all: - gcc -Wall -Wpedantic -std=c99 FileCopy.c -g -o FileCopy - gcc -Wall -Wpedantic -std=c99 threading.c matrix_structs.c matrix_display.c brodriguez_helper_functions.c -g -o threading -pthread + gcc -Wall -Wpedantic -std=c99 FileCopy.c -g -o FileCopy.out + gcc -Wall -Wpedantic -std=c99 threading.c matrix_structs.c matrix_display.c brodriguez_helper_functions.c -g -o threading.out -pthread -- GitLab