summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2020-06-17 16:02:07 +0200
committerThomas Schmucker <ts@its1.de>2020-06-17 16:02:07 +0200
commitd3fb6485ce962b795323cb2d1f19be9674349a0e (patch)
treef6f4456cd71fed6dc3a5651701c5ef16b158620d
parentee9dab6ba9b48c0bd3b700347d95063285565201 (diff)
downloadlibcsv-d3fb6485ce962b795323cb2d1f19be9674349a0e.tar.gz
libcsv-d3fb6485ce962b795323cb2d1f19be9674349a0e.tar.bz2
libcsv-d3fb6485ce962b795323cb2d1f19be9674349a0e.zip
sort compiler flags...
-rw-r--r--makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/makefile b/makefile
index e5c9303..eb96805 100644
--- a/makefile
+++ b/makefile
@@ -1,12 +1,13 @@
1all: csv-test seq-read 1all: csv-test seq-read
2 2
3CFLAGS=-Wall -Werror -std=c11 -pedantic -O2 3CC=cc
4CFLAGS=-Wall -Wextra -pedantic -std=c11 -O2
4 5
5csv-test: csv-test.c 6csv-test: csv-test.c
6 cc $(CFLAGS) -o $@ $< 7 $(CC) $(CFLAGS) -o $@ $<
7 8
8seq-read: seq-read.c 9seq-read: seq-read.c
9 cc $(CFLAGS) -o $@ $< 10 $(CC) $(CFLAGS) -o $@ $<
10 11
11.PHONY: clean 12.PHONY: clean
12clean: 13clean: