| 1 | # This manages to rebuild graminit.{h, c} under MSVC 6 (Windows), via
|
|---|
| 2 | #
|
|---|
| 3 | # nmake /f grammar.mak
|
|---|
| 4 | #
|
|---|
| 5 | # You may also need to copy python23.dll into this directory, or get
|
|---|
| 6 | # it on your search path.
|
|---|
| 7 | #
|
|---|
| 8 | # The intermediate files can be nuked afterwards:
|
|---|
| 9 | #
|
|---|
| 10 | # nmake /f grammar.mak clean
|
|---|
| 11 | #
|
|---|
| 12 | # I don't understand the maze of preprocessor #define's on Windows, and
|
|---|
| 13 | # as a result this requires linking with python23.lib, so it's of no use
|
|---|
| 14 | # for bootstrapping (the cause appears to be a useless-- in this
|
|---|
|
|---|