aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-03-26 18:28:53 +1300
committerTom Ryder <tom@sanctum.geek.nz>2016-03-26 18:28:53 +1300
commite0a73a16a876d528a8e48aabc94cae370ec27031 (patch)
tree21651e40381104b5e004146f5835a6b60824b7f3
parentAppease clang -std=c90 -Weverything (diff)
downloadcrypt-e0a73a16a876d528a8e48aabc94cae370ec27031.tar.gz
crypt-e0a73a16a876d528a8e48aabc94cae370ec27031.zip
Switch to clang
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fee44a7..b153aea 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,7 @@
.PHONY: all clean install
-CFLAGS = -pedantic -std=c11 -Wall -Wextra -Winit-self -Wmissing-declarations -Wuninitialized
+CC = clang
+CFLAGS = -std=c90 -Weverything
LDFLAGS = -lcrypt
PREFIX := /usr/local