From d3fb6485ce962b795323cb2d1f19be9674349a0e Mon Sep 17 00:00:00 2001 From: Thomas Schmucker Date: Wed, 17 Jun 2020 16:02:07 +0200 Subject: sort compiler flags... --- makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index e5c9303..eb96805 100644 --- a/makefile +++ b/makefile @@ -1,12 +1,13 @@ all: csv-test seq-read -CFLAGS=-Wall -Werror -std=c11 -pedantic -O2 +CC=cc +CFLAGS=-Wall -Wextra -pedantic -std=c11 -O2 csv-test: csv-test.c - cc $(CFLAGS) -o $@ $< + $(CC) $(CFLAGS) -o $@ $< seq-read: seq-read.c - cc $(CFLAGS) -o $@ $< + $(CC) $(CFLAGS) -o $@ $< .PHONY: clean clean: -- cgit v1.3