From 61121c638359ab95f0eef127d0326ba84c46a13e Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Fri, 9 Oct 2020 07:22:21 -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 88ba23d..015283e 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,34 @@ -a4 +### + # 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 f24bd52..6655701 100644 --- a/makefile +++ b/makefile @@ -1,2 +1,2 @@ all: - gcc -Wall -Wpedantic -std=c99 *.c -g -o a4 -pthread + gcc -Wall -Wpedantic -std=c99 *.c -g -o a4.out -pthread -- GitLab