f6aa657940
New in 1.14: * Avoid overflow in rds_free on 64-bit systems. New in 1.13: * Fix rdsinit interactive mode on amd64. * Additional rdsinit fix. * On bootstrap, remove the autom4te.cache. (Phil Nelson) New in 1.12: * Make sure we don't strip packaged binaries. * Removed cross-compilation spec files * FC5 build fixes
25 lines
583 B
Makefile
25 lines
583 B
Makefile
# $NetBSD: Makefile,v 1.21 2007/04/11 18:20:14 gdt Exp $
|
|
#
|
|
|
|
DISTNAME= rvm-1.14
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://ftp.coda.cs.cmu.edu/pub/rvm/src/
|
|
|
|
MAINTAINER= phil@cs.wwu.edu
|
|
HOMEPAGE= http://www.coda.cs.cmu.edu/
|
|
COMMENT= Recoverable Virtual Memory
|
|
|
|
USE_TOOLS+= gmake
|
|
USE_LIBTOOL= YES
|
|
|
|
GNU_CONFIGURE= YES
|
|
CONFIGURE_ARGS+= --with-lwp-includes=${BUILDLINK_PREFIX.lwp}/include
|
|
|
|
pre-build:
|
|
cd ${WRKSRC}/rvm; \
|
|
for file in *.c; do \
|
|
${LN} -sf $${file} `${BASENAME} $${file} .c`_lwp.c; \
|
|
done
|
|
|
|
.include "../../devel/lwp/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|