[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / htpasswd

File: [local] / src / usr.bin / htpasswd / Makefile (download)

Revision 1.1, Mon Mar 17 12:49:13 2014 UTC (10 years, 2 months ago) by florian
Branch: MAIN
CVS Tags: OPENBSD_6_1_BASE, OPENBSD_6_1, OPENBSD_6_0_BASE, OPENBSD_6_0, OPENBSD_5_9_BASE, OPENBSD_5_9, OPENBSD_5_8_BASE, OPENBSD_5_8, OPENBSD_5_7_BASE, OPENBSD_5_7, OPENBSD_5_6_BASE, OPENBSD_5_6

Re-implement htpasswd from scratch. There is so much bad advice on the
internet that it's better to have a known tool in base.
Intentionally not switch compatible with the old htpasswd. The only
switch really needed would be for batch mode, but that was inherently
insecure in the old htpasswd. Batch mode will be coming shortly.
OK sthen, tedu, benno

#	$OpenBSD: Makefile,v 1.1 2014/03/17 12:49:13 florian Exp $
PROG=		htpasswd
SRCS=		htpasswd.c
MAN=		htpasswd.1

CFLAGS+=	-g -W -Wall -Werror
CFLAGS+=	-Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
CFLAGS+=	-Wshadow -Wpointer-arith -Wcast-qual -Wsign-compare

.include <bsd.prog.mk>