1
0
Fork 0

Added makefile

This commit is contained in:
Kenwood 2021-06-10 18:59:41 -04:00
parent d1731df331
commit f90c11fb13
1 changed files with 12 additions and 0 deletions

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)