aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 8dd53479cec748938d6446991d21bb904c4ecc5a (plain)
1
2
3
4
5
6
7
8
9
CPPC=g++
CPPFLAGS=-O2 -Wall -Wextra -mtune=native
all: fsbm

fsbm: fsbm.cpp
	$(CPPC) fsbm.cpp statistics.cpp -o fsbm $(CPPFLAGS)

clean: 
	@rm fsbm