* HACKING: mention flex.
authorMichael Livshin <mlivshin@bigfoot.com>
Mon, 25 Jun 2001 03:31:10 +0000 (03:31 +0000)
committerMichael Livshin <mlivshin@bigfoot.com>
Mon, 25 Jun 2001 03:31:10 +0000 (03:31 +0000)
* autogen.sh: generate libguile/c-tokenize.c.

ChangeLog
HACKING
autogen.sh

index 21806c6..daabce1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-06-25  Michael Livshin  <mlivshin@bigfoot.com>
+
+       * HACKING: mention flex.
+
+       * autogen.sh: generate libguile/c-tokenize.c.
+
 2001-06-20  Martin Grabmueller  <mgrabmue@cs.tu-berlin.de>
 
        * libguile.h: Removed inclusion of libguile/tag.h.
diff --git a/HACKING b/HACKING
index b837a38..f3d60a8 100644 (file)
--- a/HACKING
+++ b/HACKING
@@ -57,9 +57,11 @@ libtool 1.4 --- a system for managing the zillion hairy options needed
        on various systems to produce shared libraries.  Available in
        "ftp://ftp.gnu.org/pub/gnu/libtool"
 
+flex 2.5.4 --- a tokenizer generator.  earlier versions will most
+        probably work too.
+
 You are lost in a little maze of automatically generated files, all
 different.
->
 
 
 Contributing Your Changes ============================================
index c3498d0..02bba0a 100755 (executable)
@@ -11,5 +11,6 @@ libtoolize --copy --automake --ltdl
 autoheader
 autoconf
 automake --add-missing
+flex -t libguile/c-tokenize.lex > libguile/c-tokenize.c
 
 ( echo "guile-readline..."; cd guile-readline; ./autogen.sh )