Init commit
[trackerpp.git] / Makefile
1 CC = g++
2 CFLAGS += -Wall -std=c++11
3
4 SRC = src/*.cpp main.cpp
5
6 all:
7         $(CC) $(CFLAGS) -o main $(SRC) -llog4cpp