Makefile revision 1.4
1#	$NetBSD: Makefile,v 1.4 2007/10/18 17:43:02 he Exp $
2#
3#	$eterna: Makefile,v 1.26 2005/09/27 20:09:20 mrg Exp $
4
5# compile-time options are:
6#	DEBUG			/* include debugging support */
7#	NO_USER_SUPPORT		/* don't support /~user requests */
8#	NO_CGIBIN_SUPPORT	/* don't support cgi-bin requests */
9#	NO_DIRINDEX_SUPPORT	/* don't support directory indexing */
10#	NO_DAEMON_MODE		/* don't support daemon mode */
11#	NO_DYNAMIC_CONTENT	/* don't support dynamic content updates */
12#	NO_SSL_SUPPORT		/* don't support ssl (https) */
13#	DO_HTPASSWD		/* support .htpasswd files */
14COPTS+=	-DDO_HTPASSWD
15PROG=	httpd
16MAN=	httpd.8
17SRCS=	bozohttpd.c ssl-bozo.c auth-bozo.c cgi-bozo.c daemon-bozo.c \
18	tilde-luzah-bozo.c dir-index-bozo.c content-bozo.c
19
20WARNS=	3
21
22CRYPTOLIBS=	-lcrypto -lssl -lcrypt
23CRYPTODEPS=	${LIBCRYPTO} ${LIBSSL} ${LIBCRYPT}
24
25# if not defining -DNO_SSL_SUPPORT
26LDADD=	-lssl -lcrypto -lcrypt
27DPADD=	${LIBSSL} ${LIBCRYPTO} ${LIBCRYPT}
28
29.include <bsd.prog.mk>
30