aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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