Makefile revision 1.9
11.9Smrg# $NetBSD: Makefile,v 1.9 2009/05/23 02:26:03 mrg Exp $ 21.2Stls# 31.9Smrg# $eterna: Makefile,v 1.27 2009/05/22 21:51:38 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.5Smrg.if ${MKCRYPTO} != "no" 251.5Smrg 261.5SmrgLDADD+= -lssl -lcrypto 271.5SmrgDPADD+= ${LIBSSL} ${LIBCRYPTO} 281.5Smrg 291.5Smrg.else 301.5Smrg 311.5SmrgCOPTS+= -DNO_SSL_SUPPORT 321.1Stls 331.5Smrg.endif 341.1Stls 351.1Stls.include <bsd.prog.mk> 36