diff options
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 |