summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/makefile b/makefile
index ed0a2c8..e15c040 100644
--- a/makefile
+++ b/makefile
@@ -1,7 +1,6 @@
1all: csv-test csv-perf seq-read 1include config.mk
2 2
3CC=cc 3all: csv-test csv-perf seq-read
4CFLAGS=-Wall -Wextra -pedantic -std=c99 -O2
5 4
6csv-test: csv-test.c csv.o csv.h 5csv-test: csv-test.c csv.o csv.h
7 $(CC) $(CFLAGS) -o $@ csv-test.c csv.o 6 $(CC) $(CFLAGS) -o $@ csv-test.c csv.o
@@ -19,4 +18,3 @@ clean:
19 rm csv-perf seq-read csv.o 18 rm csv-perf seq-read csv.o
20 19
21.PHONY: all clean 20.PHONY: all clean
22