Home | History | Annotate | Line # | Download | only in httpd
Makefile revision 1.10
      1  1.10   mrg #	$NetBSD: Makefile,v 1.10 2009/05/23 06:45:28 mrg Exp $
      2   1.2   tls #
      3   1.9   mrg #	$eterna: Makefile,v 1.27 2009/05/22 21:51:38 mrg Exp $
      4   1.1   tls 
      5   1.1   tls # compile-time options are:
      6   1.1   tls #	DEBUG			/* include debugging support */
      7   1.1   tls #	NO_USER_SUPPORT		/* don't support /~user requests */
      8   1.1   tls #	NO_CGIBIN_SUPPORT	/* don't support cgi-bin requests */
      9   1.1   tls #	NO_DIRINDEX_SUPPORT	/* don't support directory indexing */
     10   1.1   tls #	NO_DAEMON_MODE		/* don't support daemon mode */
     11   1.1   tls #	NO_DYNAMIC_CONTENT	/* don't support dynamic content updates */
     12   1.1   tls #	NO_SSL_SUPPORT		/* don't support ssl (https) */
     13   1.1   tls #	DO_HTPASSWD		/* support .htpasswd files */
     14   1.3  reed COPTS+=	-DDO_HTPASSWD
     15   1.2   tls PROG=	httpd
     16   1.2   tls MAN=	httpd.8
     17   1.6   mrg BUILDSYMLINKS+=bozohttpd.8 httpd.8
     18   1.1   tls SRCS=	bozohttpd.c ssl-bozo.c auth-bozo.c cgi-bozo.c daemon-bozo.c \
     19   1.1   tls 	tilde-luzah-bozo.c dir-index-bozo.c content-bozo.c
     20   1.1   tls 
     21   1.5   mrg LDADD=	-lcrypt
     22   1.5   mrg DPADD=	${LIBCRYPT}
     23   1.5   mrg 
     24  1.10   mrg .include <bsd.own.mk>
     25  1.10   mrg 
     26   1.5   mrg .if ${MKCRYPTO} != "no"
     27   1.5   mrg 
     28   1.5   mrg LDADD+=	-lssl -lcrypto
     29   1.5   mrg DPADD+=	${LIBSSL} ${LIBCRYPTO}
     30   1.5   mrg 
     31   1.5   mrg .else
     32   1.5   mrg 
     33   1.5   mrg COPTS+=	-DNO_SSL_SUPPORT
     34   1.1   tls 
     35   1.5   mrg .endif
     36   1.1   tls 
     37   1.1   tls .include <bsd.prog.mk>
     38