aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 6efd105..4a29f19 100644
--- a/makefile
+++ b/makefile
@@ -10,10 +10,10 @@ seq-read: seq-read.c
10 $(CC) $(CFLAGS) -o $@ $< 10 $(CC) $(CFLAGS) -o $@ $<
11 11
12csv.o: csv.c csv.h 12csv.o: csv.c csv.h
13 $(CC) $(CFLAGS) -o $@ -c csv.c 13 $(CC) $(CFLAGS) -DNDEBUG -o $@ -c $<
14 14
15clean: 15clean:
16 rm csv-test seq-read 16 rm csv-test seq-read csv.o
17 17
18.PHONY: all clean 18.PHONY: all clean
19 19