aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-03-05 18:40:58 +1300
committerTom Ryder <tom@sanctum.geek.nz>2016-03-05 18:40:58 +1300
commit498d8cf9b2ab7a13602a9030f4d930451358eb59 (patch)
tree7191d33bb0bf7bc15c170b55ad012618e5c39987
parentCorrect type for bytes-read (diff)
downloadcat-498d8cf9b2ab7a13602a9030f4d930451358eb59.tar.gz
cat-498d8cf9b2ab7a13602a9030f4d930451358eb59.zip
Switching to clang
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e373493..b6105a2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
-CC = gcc
-CFLAGS = -Wall -Wpedantic -ansi -pedantic-errors
+CC = clang
+CFLAGS = -std=c90 -Weverything
cat : main.o cfn.o cfp.o
$(CC) $(CFLAGS) -o cat main.o cfn.o cfp.o