openbsd-ports/lang/chicken/Makefile
steven e75d24784d - make the compiler find its header files
- set up paths correctly for extensions to work
from maintainer Deanna Phillips <deanna at sdf.lonestar.org>

clean up a bit while here.
2006-07-31 08:07:54 +00:00

42 lines
910 B
Makefile

# $OpenBSD: Makefile,v 1.4 2006/07/31 08:07:54 steven Exp $
COMMENT= "practical and portable Scheme system"
DISTNAME= chicken-2.41
PKGNAME= ${DISTNAME}p1
SHARED_LIBS= chicken 0.0 \
uchicken 0.0
CATEGORIES= lang
HOMEPAGE= http://www.call-with-current-continuation.org/
MAINTAINER= Deanna Phillips <deanna@sdf.lonestar.org>
# BSD
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ${HOMEPAGE}
WANTLIB= c m
SEPARATE_BUILD= simple
USE_GMAKE= Yes
USE_LIBTOOL= Yes
CONFIGURE_STYLE=gnu
CONFIGURE_ARGS= ${CONFIGURE_SHARED}
# gcc 3.3.5 internal compiler error
.if ${MACHINE_ARCH} == "sparc64"
EXTRA_CFLAGS= -O0
.endif
# benchmark runs into forever loop at low nursery sizes on some architectures
# fix this value at 128k instead of using the benchmark
MAKE_FLAGS= NURSERY=131072 \
EXTRA_CFLAGS=${EXTRA_CFLAGS}
.include <bsd.port.mk>