summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorClay Smith <claysmith158@gmail.com>2023-01-26 03:48:38 -0600
committerClay Smith <claysmith158@gmail.com>2023-01-26 03:48:38 -0600
commitd83a049ca7556ebc0a03f7f66dd7f89b0b2a72e5 (patch)
tree6a44481570ad95316096f60d01f35af5381412bf /Makefile
First Commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..aa6c8ee
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,8 @@
+CC = gcc
+ALL_FLAGS = -g
+
+main: main.c
+ ${CC} ${ALL_FLAGS} main.c
+
+clean:
+ rm *\.o