cvsuser 03/07/15 18:37:34
Modified: config/gen/makefiles ook.in
languages/ook README
Log:
No longer need to use assemble.pl
Revision Changes Path
1.4 +3 -5 parrot/config/gen/makefiles/ook.in
Index: ook.in
===================================================================
RCS file: /cvs/public/parrot/config/gen/makefiles/ook.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -w -r1.3 -r1.4
--- ook.in 30 May 2003 17:17:02 -0000 1.3
+++ ook.in 16 Jul 2003 01:37:32 -0000 1.4
@@ -1,16 +1,14 @@
RM_F = ${rm_f}
-PERL = ${perl}
-ASSEMBLE=$(PERL) ../../assemble.pl
PARROT=../../parrot
all: build
test: build
- ../imcc/imcc -r ook.pasm test.ook
+ $(PARROT) -r ook.pasm test.ook
build: ook.pasm
- $(ASSEMBLE) -o ook.pbc ook.pasm
+ $(PARROT) -o ook.pbc ook.pasm
clean:
$(RM_F) core *.pbc *~ foo.p*
1.2 +3 -3 parrot/languages/ook/README
Index: README
===================================================================
RCS file: /cvs/public/parrot/languages/ook/README,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -w -r1.1 -r1.2
--- README 1 Jan 2003 00:34:16 -0000 1.1
+++ README 16 Jul 2003 01:37:34 -0000 1.2
@@ -2,9 +2,9 @@
-----------
This is an Ook! compiler written in Parrot assembly, version 0.0.1
-This is a compiler, and not an interpreter. This means that the code
+This is a compiler and not an interpreter. This means that the code
is read, then compiled into Parrot assembly (yes, the target language
-is also Parrot). Then, you can fetch the Parrot assembly generated,
+is also Parrot). Then you can fetch the Parrot assembly generated,
assemble it and interpret it with Parrot just as you would with any
other Parrot assembly file.
@@ -16,7 +16,7 @@
Then you can compile your Ook! program with:
$ ../../parrot ook.pbc > foo.pasm
- $ perl ../../assemble.pl foo.pasm > foo.pbc
+ $ ../../parrot -o foo.pbc foo.pasm
$ ../../parrot foo.pbc