diff options
author | Calvin Morrison <mutantturkey@gmail.com> | 2014-11-05 22:25:50 -0500 |
---|---|---|
committer | Calvin Morrison <mutantturkey@gmail.com> | 2014-11-05 22:25:50 -0500 |
commit | 9115e4f438379c8a8edd4e4069fe56cd2ab46c4b (patch) | |
tree | bba6a0f2135bf837dd5cb9647872587e28c4988a /Makefile | |
parent | 71d3b718ba0f1f4c3a7aad11b5c297ead5cfd95a (diff) |
turn that C++ into C
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 |