From 0ee2ec205c32de9b2563cc4175d1f6d3b65eb220 Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Fri, 21 Aug 2020 13:37:11 +0200 Subject: fix(doku): Dokumentation überarbeitet und deutlich ausgebaut. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index 5866c43..5b850c7 100644 --- a/makefile +++ b/makefile @@ -1,6 +1,6 @@ include config.mk -all: csv-test csv-perf seq-read +all: csv-test csv-perf seq-read csv-tutorial csv-test: csv-test.c csv.c csv.h $(CC) $(CFLAGS-TEST) -DNDEBUG -o $@ csv-test.c csv.c @@ -16,10 +16,13 @@ csv-perf: csv-perf.c csv.o csv.h seq-read: seq-read.c $(CC) $(CFLAGS) -o $@ $< +csv-tutorial: csv-tutorial.c csv.o csv.h + $(CC) $(CFLAGS) -o $@ csv-tutorial.c csv.o + csv.o: csv.c csv.h $(CC) $(CFLAGS) -DNDEBUG -o $@ -c $< clean: - rm csv-test csv-perf seq-read csv.o + rm -f csv-test csv-perf seq-read csv.o csv-tutorial .PHONY: all clean coverage -- cgit v1.3