From f90c11fb130505bed762462108f877ba316c1080 Mon Sep 17 00:00:00 2001 From: KenwoodFox Date: Thu, 10 Jun 2021 18:59:41 -0400 Subject: [PATCH] Added makefile --- makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 makefile diff --git a/makefile b/makefile new file mode 100644 index 0000000..f62c17a --- /dev/null +++ b/makefile @@ -0,0 +1,12 @@ +# Compiler +CC = g++ + +TARGET = checkbit + +all: $(TARGET) + +$(TARGET): $(TARGET).cpp + $(CC) -o $(TARGET) $(TARGET).cpp + +clean: + $(RM) $(TARGET)