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)