Move everything down a dir
This commit is contained in:
14
CheckBit/makefile
Normal file
14
CheckBit/makefile
Normal file
@@ -0,0 +1,14 @@
|
||||
# Compiler
|
||||
CC = g++
|
||||
|
||||
TARGET = checkbit
|
||||
BUILDIR = build
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
$(TARGET): $(TARGET).cpp
|
||||
mkdir $(BUILDIR)
|
||||
$(CC) -o $(BUILDIR)/$(TARGET) $(TARGET).cpp
|
||||
|
||||
clean:
|
||||
$(RM) $(TARGET)
|
||||
Reference in New Issue
Block a user