aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCalvin Morrison <mutantturkey@gmail.com>2014-11-05 22:25:50 -0500
committerCalvin Morrison <mutantturkey@gmail.com>2014-11-05 22:25:50 -0500
commit9115e4f438379c8a8edd4e4069fe56cd2ab46c4b (patch)
treebba6a0f2135bf837dd5cb9647872587e28c4988a /Makefile
parent71d3b718ba0f1f4c3a7aad11b5c297ead5cfd95a (diff)
turn that C++ into C
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 8dd5347..1a12155 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,9 @@
-CPPC=g++
-CPPFLAGS=-O2 -Wall -Wextra -mtune=native
+CC=gcc
+CFLAGS=-O2 -Wall -Wextra -mtune=native
all: fsbm
-fsbm: fsbm.cpp
- $(CPPC) fsbm.cpp statistics.cpp -o fsbm $(CPPFLAGS)
+fsbm: fsbm.c
+ $(CC) fsbm.c -o fsbm $(CFLAGS)
clean:
- @rm fsbm \ No newline at end of file
+ @rm fsbm