aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2020-08-21 13:37:11 +0200
committerThomas Schmucker <ts@its1.de>2020-08-21 13:37:11 +0200
commit0ee2ec205c32de9b2563cc4175d1f6d3b65eb220 (patch)
treef075fcf2a1f66c83f8fc7076a03ba57e2e6719e4 /makefile
parentb24ed5ebcd10d3295b009691833dec8f685ff4f6 (diff)
downloadlibcsv-0ee2ec205c32de9b2563cc4175d1f6d3b65eb220.tar.gz
libcsv-0ee2ec205c32de9b2563cc4175d1f6d3b65eb220.tar.bz2
libcsv-0ee2ec205c32de9b2563cc4175d1f6d3b65eb220.zip
fix(doku): Dokumentation überarbeitet und deutlich ausgebaut.
Diffstat (limited to 'makefile')
-rw-r--r--makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/makefile b/makefile
index 5866c43..5b850c7 100644
--- a/makefile
+++ b/makefile
@@ -1,6 +1,6 @@
1include config.mk 1include config.mk
2 2
3all: csv-test csv-perf seq-read 3all: csv-test csv-perf seq-read csv-tutorial
4 4
5csv-test: csv-test.c csv.c csv.h 5csv-test: csv-test.c csv.c csv.h
6 $(CC) $(CFLAGS-TEST) -DNDEBUG -o $@ csv-test.c csv.c 6 $(CC) $(CFLAGS-TEST) -DNDEBUG -o $@ csv-test.c csv.c
@@ -16,10 +16,13 @@ csv-perf: csv-perf.c csv.o csv.h
16seq-read: seq-read.c 16seq-read: seq-read.c
17 $(CC) $(CFLAGS) -o $@ $< 17 $(CC) $(CFLAGS) -o $@ $<
18 18
19csv-tutorial: csv-tutorial.c csv.o csv.h
20 $(CC) $(CFLAGS) -o $@ csv-tutorial.c csv.o
21
19csv.o: csv.c csv.h 22csv.o: csv.c csv.h
20 $(CC) $(CFLAGS) -DNDEBUG -o $@ -c $< 23 $(CC) $(CFLAGS) -DNDEBUG -o $@ -c $<
21 24
22clean: 25clean:
23 rm csv-test csv-perf seq-read csv.o 26 rm -f csv-test csv-perf seq-read csv.o csv-tutorial
24 27
25.PHONY: all clean coverage 28.PHONY: all clean coverage