Makefile revision 1.2
11.2Stls#	$NetBSD: Makefile,v 1.2 2007/10/16 01:31:03 tls Exp $
21.2Stls#
31.1Stls#	$eterna: Makefile,v 1.26 2005/09/27 20:09:20 mrg Exp $
41.1Stls
51.1Stls# compile-time options are:
61.1Stls#	DEBUG			/* include debugging support */
71.1Stls#	NO_USER_SUPPORT		/* don't support /~user requests */
81.1Stls#	NO_CGIBIN_SUPPORT	/* don't support cgi-bin requests */
91.1Stls#	NO_DIRINDEX_SUPPORT	/* don't support directory indexing */
101.1Stls#	NO_DAEMON_MODE		/* don't support daemon mode */
111.1Stls#	NO_DYNAMIC_CONTENT	/* don't support dynamic content updates */
121.1Stls#	NO_SSL_SUPPORT		/* don't support ssl (https) */
131.1Stls#	DO_HTPASSWD		/* support .htpasswd files */
141.2StlsCOPTS+=	-DDO_HTTPASSWD
151.2StlsPROG=	httpd
161.2StlsMAN=	httpd.8
171.1StlsSRCS=	bozohttpd.c ssl-bozo.c auth-bozo.c cgi-bozo.c daemon-bozo.c \
181.1Stls	tilde-luzah-bozo.c dir-index-bozo.c content-bozo.c
191.1Stls
201.1StlsWARNS=	3
211.1Stls
221.1StlsCRYPTOLIBS=	-lcrypto -lssl
231.2StlsCRYPTODEPS=	${LIBCRYPTO} ${LIBSSL}
241.1Stls
251.1Stls# if not defining -DNO_SSL_SUPPORT
261.2StlsLDADD=	-lssl -lcrypto
271.2StlsDPADD=	${LIBSSL} ${LIBCRYPTO}
281.1Stls
291.1Stls.include <bsd.prog.mk>
30