From 71d3b718ba0f1f4c3a7aad11b5c297ead5cfd95a Mon Sep 17 00:00:00 2001 From: Calvin Morrison Date: Fri, 31 Oct 2014 16:45:55 -0400 Subject: initial commit, still sucks --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8dd5347 --- /dev/null +++ b/Makefile @@ -0,0 +1,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 \ No newline at end of file -- cgit v1.2.3