From 2caae8f8c31fd439828b2183fc852a765e0f2ee1 Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Thu, 18 Jun 2020 16:05:54 +0200 Subject: Testprogramme und Beispiele hinzugefügt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index eb96805..eaedfb0 100644 --- a/makefile +++ b/makefile @@ -1,10 +1,10 @@ all: csv-test seq-read CC=cc -CFLAGS=-Wall -Wextra -pedantic -std=c11 -O2 +CFLAGS=-Wall -Wextra -pedantic -std=c11 -O3 -DNDEBUG -csv-test: csv-test.c - $(CC) $(CFLAGS) -o $@ $< +csv-test: csv-test.c csv.c csv.h + $(CC) $(CFLAGS) -o $@ csv-test.c csv.c seq-read: seq-read.c $(CC) $(CFLAGS) -o $@ $< -- cgit v1.3