aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--csv-perf.c (renamed from csv-test.c)0
-rw-r--r--makefile8
2 files changed, 4 insertions, 4 deletions
diff --git a/csv-test.c b/csv-perf.c
index efd2155..efd2155 100644
--- a/csv-test.c
+++ b/csv-perf.c
diff --git a/makefile b/makefile
index 4a29f19..d6e2f54 100644
--- a/makefile
+++ b/makefile
@@ -1,10 +1,10 @@
1all: csv-test seq-read 1all: 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 6csv-perf: csv-perf.c csv.o csv.h
7 $(CC) $(CFLAGS) -o $@ csv-test.c csv.o 7 $(CC) $(CFLAGS) -o $@ csv-perf.c csv.o
8 8
9seq-read: seq-read.c 9seq-read: seq-read.c
10 $(CC) $(CFLAGS) -o $@ $< 10 $(CC) $(CFLAGS) -o $@ $<
@@ -13,7 +13,7 @@ csv.o: csv.c csv.h
13 $(CC) $(CFLAGS) -DNDEBUG -o $@ -c $< 13 $(CC) $(CFLAGS) -DNDEBUG -o $@ -c $<
14 14
15clean: 15clean:
16 rm csv-test seq-read csv.o 16 rm csv-perf seq-read csv.o
17 17
18.PHONY: all clean 18.PHONY: all clean
19 19