aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2020-06-18 16:05:54 +0200
committerThomas Schmucker <ts@its1.de>2020-06-18 16:05:54 +0200
commit2caae8f8c31fd439828b2183fc852a765e0f2ee1 (patch)
tree5e24c816dcbf4a38a6bb9412bd5c2e929f18c6d8 /makefile
parentb576c50666fec47ee6c95c7b8d31144528635c37 (diff)
downloadlibcsv-2caae8f8c31fd439828b2183fc852a765e0f2ee1.tar.gz
libcsv-2caae8f8c31fd439828b2183fc852a765e0f2ee1.tar.bz2
libcsv-2caae8f8c31fd439828b2183fc852a765e0f2ee1.zip
Testprogramme und Beispiele hinzugefügt
Diffstat (limited to 'makefile')
-rw-r--r--makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/makefile b/makefile
index eb96805..eaedfb0 100644
--- a/makefile
+++ b/makefile
@@ -1,10 +1,10 @@
1all: csv-test seq-read 1all: csv-test seq-read
2 2
3CC=cc 3CC=cc
4CFLAGS=-Wall -Wextra -pedantic -std=c11 -O2 4CFLAGS=-Wall -Wextra -pedantic -std=c11 -O3 -DNDEBUG
5 5
6csv-test: csv-test.c 6csv-test: csv-test.c csv.c csv.h
7 $(CC) $(CFLAGS) -o $@ $< 7 $(CC) $(CFLAGS) -o $@ csv-test.c csv.c
8 8
9seq-read: seq-read.c 9seq-read: seq-read.c
10 $(CC) $(CFLAGS) -o $@ $< 10 $(CC) $(CFLAGS) -o $@ $<