diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2016-03-05 18:40:58 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2016-03-05 18:40:58 +1300 |
commit | 498d8cf9b2ab7a13602a9030f4d930451358eb59 (patch) | |
tree | 7191d33bb0bf7bc15c170b55ad012618e5c39987 | |
parent | Correct type for bytes-read (diff) | |
download | cat-498d8cf9b2ab7a13602a9030f4d930451358eb59.tar.gz cat-498d8cf9b2ab7a13602a9030f4d930451358eb59.zip |
Switching to clang
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |