aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2020-06-19 10:53:19 +0200
committerThomas Schmucker <ts@its1.de>2020-06-19 10:53:19 +0200
commitb3d12c0a9d075baae55c9922e82eb6af173e788b (patch)
tree668bdd8dbe769208f9e5928053031e5d96772973
parentc4d90c834c38545fd451f12dc51222c9928f9867 (diff)
downloadlibcsv-b3d12c0a9d075baae55c9922e82eb6af173e788b.tar.gz
libcsv-b3d12c0a9d075baae55c9922e82eb6af173e788b.tar.bz2
libcsv-b3d12c0a9d075baae55c9922e82eb6af173e788b.zip
Der Code benötigt nur C99, nicht C11. Fixe das in der makefile.
-rw-r--r--makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile b/makefile
index 9981ebf..0564f60 100644
--- a/makefile
+++ b/makefile
@@ -1,7 +1,7 @@
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=c99 -O2
5 5
6csv-test: csv-test.c csv.c csv.h 6csv-test: csv-test.c csv.c csv.h
7 $(CC) $(CFLAGS) -o $@ csv-test.c csv.c 7 $(CC) $(CFLAGS) -o $@ csv-test.c csv.c