blob: a73b356a0c4adfdcb7a9dc0ae7e3ab5911453c6b (
plain)
1
2
3
4
5
6
7
8
9
10
|
# $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>
|