aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-01-16 19:01:00 +1300
committerTom Ryder <tom@sanctum.geek.nz>2020-01-16 19:01:00 +1300
commit2722474ec2b7653afe8b45e91cb4795ffac7e9c9 (patch)
tree0f369f248b52a8cbe7d1d49e6ab7383047bbc665 /Makefile
parentMerge branch 'release/v1.1.0' (diff)
parentBump VERSION (diff)
downloadcrypt-2722474ec2b7653afe8b45e91cb4795ffac7e9c9.tar.gz
crypt-2722474ec2b7653afe8b45e91cb4795ffac7e9c9.zip
Merge branch 'release/v1.2.0'v1.2.0
* release/v1.2.0: Reorder functions Fix and extend GCC options Add braces around single-statement if blocks Adjust indentation of switch block Use consistent layout for function braces
Diffstat (limited to 'Makefile')
-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)