1 1.4.2.2 matt # $NetBSD: 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.2 matt SRCS= bozohttpd.c ssl-bozo.c auth-bozo.c cgi-bozo.c daemon-bozo.c \ 18 1.4.2.2 matt tilde-luzah-bozo.c dir-index-bozo.c content-bozo.c 19 1.4.2.2 matt 20 1.4.2.2 matt WARNS= 3 21 1.4.2.2 matt 22 1.4.2.2 matt CRYPTOLIBS= -lcrypto -lssl -lcrypt 23 1.4.2.2 matt CRYPTODEPS= ${LIBCRYPTO} ${LIBSSL} ${LIBCRYPT} 24 1.4.2.2 matt 25 1.4.2.2 matt # if not defining -DNO_SSL_SUPPORT 26 1.4.2.2 matt LDADD= -lssl -lcrypto -lcrypt 27 1.4.2.2 matt DPADD= ${LIBSSL} ${LIBCRYPTO} ${LIBCRYPT} 28 1.4.2.2 matt 29 1.4.2.2 matt .include <bsd.prog.mk> 30