From 9115e4f438379c8a8edd4e4069fe56cd2ab46c4b Mon Sep 17 00:00:00 2001 From: Calvin Morrison Date: Wed, 5 Nov 2014 22:25:50 -0500 Subject: turn that C++ into C --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3