Makefile revision 1.6
11.6Smrg# $NetBSD: Makefile,v 1.6 2008/03/03 03:10:53 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.6SmrgBUILDSYMLINKS+=bozohttpd.8 httpd.8 181.1StlsSRCS= bozohttpd.c ssl-bozo.c auth-bozo.c cgi-bozo.c daemon-bozo.c \ 191.1Stls tilde-luzah-bozo.c dir-index-bozo.c content-bozo.c 201.1Stls 211.5SmrgLDADD= -lcrypt 221.5SmrgDPADD= ${LIBCRYPT} 231.5Smrg 241.1StlsWARNS= 3 251.1Stls 261.5Smrg.include <bsd.own.mk> 271.5Smrg 281.5Smrg.if ${MKCRYPTO} != "no" 291.5Smrg 301.5SmrgLDADD+= -lssl -lcrypto 311.5SmrgDPADD+= ${LIBSSL} ${LIBCRYPTO} 321.5Smrg 331.5Smrg.else 341.5Smrg 351.5SmrgCOPTS+= -DNO_SSL_SUPPORT 361.1Stls 371.5Smrg.endif 381.1Stls 391.1Stls.include <bsd.prog.mk> 40