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