From d52ef07d3f7e1206669bc57dc6fe70e18552837c Mon Sep 17 00:00:00 2001
From: Brandon Rodriguez <brodriguez8774@gmail.com>
Date: Fri, 9 Oct 2020 05:58:38 -0400
Subject: [PATCH] Update gitignore and makefile

---
 .gitignore | 35 ++++++++++++++++++++++++++++++++++-
 makefile   |  2 +-
 2 files changed, 35 insertions(+), 2 deletions(-)

diff --git a/.gitignore b/.gitignore
index 113d16d..015283e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,34 @@
-3240Assignment2
+###
+ # 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 3fd8d9b..42182a7 100644
--- a/makefile
+++ b/makefile
@@ -1,3 +1,3 @@
 all:
-	gcc -Wall -Wpedantic -std=c99 *.c -g -o 3240Assignment2
+	gcc -Wall -Wpedantic -std=c99 *.c -g -o a2.out
 
-- 
GitLab