diff options
author | cpiazza <cpiazza@FreeBSD.org> | 1999-08-14 22:08:36 +0000 |
---|---|---|
committer | cpiazza <cpiazza@FreeBSD.org> | 1999-08-14 22:08:36 +0000 |
commit | b16d7b5441cee72894249d9a5e95a4b699d9021a (patch) | |
tree | 3bf10d423aeaf3052133ed74790e7b4c914a2f79 /lang/nqc/Makefile | |
parent | 775ab08d2173d1be2a8c3f35c4939334edbe4c8b (diff) | |
download | FreeBSD-ports-b16d7b5441cee72894249d9a5e95a4b699d9021a.zip FreeBSD-ports-b16d7b5441cee72894249d9a5e95a4b699d9021a.tar.gz |
Import of nqc,
A compiler for a simple language for programming the LEGO RCX or CyberMaster
controllers. The language itself is "Not Quite C" and includes preprocessor
and control structures very similar to the C language, but with restrictions
imposed by the limitations of the RCX hardware/firmware itself.
Besides compiling, nqc also provides functions for downloading the RCX
firmware as well as uploading programs to and downloading from the RCX.
PR: 13081
Submitted by: Kelly Yancey <kbyanc@posi.net>
Diffstat (limited to 'lang/nqc/Makefile')
-rw-r--r-- | lang/nqc/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lang/nqc/Makefile b/lang/nqc/Makefile new file mode 100644 index 0000000..9aec089 --- /dev/null +++ b/lang/nqc/Makefile @@ -0,0 +1,19 @@ +# New ports collection makefile for: nqc +# Version required: 1.3 +# Date created: 11 Aug 1999 +# Whom: kbyanc +# +# $Id$ +# + +DISTNAME= nqc_src_1_3 +PKGNAME= nqc-1.3 +CATEGORIES= lang +MASTER_SITES= http://www.enteract.com/~dbaum/lego/nqc/release/ + +MAINTAINER= kbyanc@posi.net + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/bin/nqc ${PREFIX}/bin + +.include <bsd.port.mk> |