summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/makefile b/makefile
index d6e2f54..ed0a2c8 100644
--- a/makefile
+++ b/makefile
@@ -1,8 +1,11 @@
1all: csv-perf seq-read 1all: csv-test csv-perf seq-read
2 2
3CC=cc 3CC=cc
4CFLAGS=-Wall -Wextra -pedantic -std=c99 -O2 4CFLAGS=-Wall -Wextra -pedantic -std=c99 -O2
5 5
6csv-test: csv-test.c csv.o csv.h
7 $(CC) $(CFLAGS) -o $@ csv-test.c csv.o
8
6csv-perf: csv-perf.c csv.o csv.h 9csv-perf: csv-perf.c csv.o csv.h
7 $(CC) $(CFLAGS) -o $@ csv-perf.c csv.o 10 $(CC) $(CFLAGS) -o $@ csv-perf.c csv.o
8 11