set the default source files to *.c, as this is common in our apache
modules.
This commit is contained in:
parent
909552f856
commit
a25ed7d30d
1 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: module.mk,v 1.2 2003/02/17 17:47:52 grant Exp $
|
||||
# $NetBSD: module.mk,v 1.3 2003/02/17 20:58:19 grant Exp $
|
||||
#
|
||||
# This Makefile fragment is intended to be included by packages that build
|
||||
# and install apache modules.
|
||||
|
@ -16,7 +16,8 @@
|
|||
# APACHE_MODULE_SRCDIR the location of the source files for this module,
|
||||
# defaults to WRKSRC.
|
||||
#
|
||||
# APACHE_MODULE_SRC the source files to be compiled for this module.
|
||||
# APACHE_MODULE_SRC the source files to be compiled for this
|
||||
# module, defaults to *.c.
|
||||
#
|
||||
|
||||
.if !defined(_APACHE_MODULE_MK)
|
||||
|
@ -26,6 +27,7 @@ APACHE_MODULE= # defined
|
|||
.include "../../www/apache/buildlink2.mk"
|
||||
|
||||
APACHE_MODULE_SRCDIR?= ${WRKSRC}
|
||||
APACHE_MODULE_SRC?= *.c
|
||||
|
||||
apache-module-build:
|
||||
${_PKG_SILENT}${_PKG_DEBUG} \
|
||||
|
|
Loading…
Reference in a new issue