COMPILER = g++
SOURCES = ./src/main.cpp
OUTPUT = ./bin/Linux/WebStats.cgi
OPTIONS = -s -O3

$(OUTPUT):	$(SOURCES)
	mkdir -p ./bin/Linux
	$(COMPILER) $(OPTIONS) $(SOURCES) -o $(OUTPUT)

all:	$(OUTPUT)

clean:
	rm -f $(OUTPUT)
