aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-01-16 18:52:07 +1300
committerTom Ryder <tom@sanctum.geek.nz>2020-01-16 18:52:07 +1300
commit95e6164284bd1c5b70dcdffc0270e825043ce105 (patch)
treebcebe8faf881078922bef25839c4230cdbbb6a9e
parentAdd braces around single-statement if blocks (diff)
downloadcrypt-95e6164284bd1c5b70dcdffc0270e825043ce105.tar.gz
crypt-95e6164284bd1c5b70dcdffc0270e825043ce105.zip
Fix and extend GCC options
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e263d11..b5ddaf2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,8 @@
.POSIX:
.PHONY: all clean distclean install
PREFIX = /usr/local
-#CFLAGS = -Werror -Wstrict -pedantic # Recommended for GCC
+#CC = gcc
+#CFLAGS = -Wall -Werror -Wextra -ansi -pedantic
LDFLAGS = -lcrypt
ALL = crypt
all: $(ALL)