Log/Makefile

13 lines
175 B
Makefile

TARGET = Log.o
CFLAGS = -O2 -std=c++11 -Wall -Wextra -pedantic-errors -g
.PHONY: all clean
all: $(TARGET)
%.o: %.cpp
$(CXX) -c -o $@ $(CFLAGS) $^
clean:
$(RM) $(TARGET)