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