8ed920776b
(If we decide we want the restrictions here after all so modules fail up front, which isn't completely useless, they should at least match the ones on the parent package.)
26 lines
739 B
Makefile
26 lines
739 B
Makefile
# $NetBSD: module.mk,v 1.6 2015/01/04 03:19:45 dholland Exp $
|
|
|
|
# Used variables:
|
|
# CLISP_MODULE - name of module and subdirectory in "modules"
|
|
|
|
CLISP_VERSION= 2.49
|
|
DISTNAME= clisp-$(CLISP_VERSION)
|
|
|
|
CONFIGURE_DIRS= modules/$(CLISP_MODULE)
|
|
GNU_CONFIGURE= YES
|
|
BUILD_TARGET= clisp-module # converting to "all"
|
|
|
|
CONFIGURE_ENV+= ac_install_sh="install -c"
|
|
CONFIGURE_ENV+= ac_aux_dir=$(PREFIX)/lib/clisp/build-aux/
|
|
#TEST_TARGET= check mod-check
|
|
|
|
INSTALLATION_DIRS= lib/clisp
|
|
|
|
.if !target(do-install)
|
|
do-install:
|
|
$(INSTALL_DATA_DIR) $(DESTDIR)$(PREFIX)/lib/clisp/dynmod
|
|
cd $(WRKSRC)/modules; \
|
|
${SETENV} ${MAKE_ENV} ${INSTALL_ENV} sh $(LOCALBASE)/bin/clisp-link install $(CLISP_MODULE)
|
|
.endif
|
|
|
|
.include "../../lang/clisp/buildlink3.mk"
|