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