pkgsrc/lang/dylan-compiler/Makefile
agc c99833b44a Initial import of the Gwydion Dylan compiler, version 2.3.6, into the
NetBSD Packages Collection.

Dylan is an object-oriented, dynamic, infix, garbage-collected
programming language with support for multiple inheritence, multiple
dispatch (an advanced form of polymorphism), typed and untyped
variables, closures and exceptions.  Dylan also supports pattern-based
hygenic macros.  These allow you to define new control constructs and
fully integrate them with the language.

Dylan (theoretically) combines the performance of C or C++ with the
rapid development of Perl and the expressiveness of LISP.  It looks
similar to C or Pascal, so experienced programmers can learn to write
simple programs quickly.

Gwydion Dylan provides two implementations of the Dylan programming
language:  Mindy and d2c.  Mindy is bytecode compiler and interpreter,
and d2c is a Dylan-to-C compiler.  Mindy compiles programs quickly,
but the resulting executables run slowly.  On the other hand, d2c
compiles programs slowly, but they run quickly.

Gwydion Dylan was originally written by the Gwydion Group at CMU as
part of a research project studying advanced hypercode development
environments.  It is now maintained by a group of volunteers.
2002-01-15 20:14:33 +00:00

19 lines
709 B
Makefile

# $NetBSD: Makefile,v 1.1.1.1 2002/01/15 20:14:33 agc Exp $
#
PKGNAME= dylan-compiler-2.3.6
PATCHDIR= ${.CURDIR}/../dylan-interpreter/patches
DISTINFO_FILE= ${.CURDIR}/../dylan-interpreter/distinfo
AUTOGEN_TARGET= --enable-mindy-bootstrap
CONFLICTS= dylan-interpreter-[0-9]*
pre-build:
${ECHO_MSG} "********************************** WARNING ***********************************"
${ECHO_MSG} "This package takes over 8 hours to build on an 800 MHz PIII with 128 MB memory"
${ECHO_MSG} "You could try the dylan interpreter, in ${.CURDIR}/../dylan-interpreter"
${ECHO_MSG} "********************************** WARNING ***********************************"
.include "../dylan-interpreter/Makefile.common"