Makefile revision 1.5
11.5Smrg# $NetBSD: Makefile,v 1.5 2008/02/03 23:48:09 mrg 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.3SreedCOPTS+= -DDO_HTPASSWD 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.5SmrgLDADD= -lcrypt 211.5SmrgDPADD= ${LIBCRYPT} 221.5Smrg 231.1StlsWARNS= 3 241.1Stls 251.5Smrg.include <bsd.own.mk> 261.5Smrg 271.5Smrg.if ${MKCRYPTO} != "no" 281.5Smrg 291.5SmrgLDADD+= -lssl -lcrypto 301.5SmrgDPADD+= ${LIBSSL} ${LIBCRYPTO} 311.5Smrg 321.5Smrg.else 331.5Smrg 341.5SmrgCOPTS+= -DNO_SSL_SUPPORT 351.1Stls 361.5Smrg.endif 371.1Stls 381.1Stls.include <bsd.prog.mk> 39