CC = g++ CFLAGS += -Wall -std=c++11 SRC = src/*.cpp main.cpp all: $(CC) $(CFLAGS) -o main $(SRC) -llog4cpp