# Compiler
CC = g++
TARGET = checkbit
all: $(TARGET)
$(TARGET): $(TARGET).cpp
$(CC) -o $(TARGET) $(TARGET).cpp
clean:
$(RM) $(TARGET)