From d30057c838b664b0a1a08406f02fdd0f6548ef80 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 28 Feb 2016 13:58:44 +1300 Subject: Correct some pedantic errors --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 5831686..218c2ed 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ CC = gcc -CFLAGS = -ansi -pedantic-errors +CFLAGS = -Wall -Wpedantic -ansi -pedantic-errors cat : main.o cfn.o cfd.o - gcc -o cat main.o cfn.o cfd.o + gcc $(CFLAGS) -o cat main.o cfn.o cfd.o clean : rm -f -- cat *.o -- cgit v1.2.3