1
0

Added makefile

This commit is contained in:
2021-06-10 18:59:41 -04:00
parent d1731df331
commit f90c11fb13

12
makefile Normal file
View File

@@ -0,0 +1,12 @@
# Compiler
CC = g++
TARGET = checkbit
all: $(TARGET)
$(TARGET): $(TARGET).cpp
$(CC) -o $(TARGET) $(TARGET).cpp
clean:
$(RM) $(TARGET)