diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-04-22 00:39:44 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-04-22 00:39:44 (GMT) |
commit | 1c6192662da753cfefc12f05c6e2886ceb79fb72 (patch) | |
tree | 33c36f42f4ebd281e45c76bd4fcc3e26ddfe8119 /Parser | |
parent | 931625dc77cfd527b059e579615d517d8d994110 (diff) | |
download | cpython-1c6192662da753cfefc12f05c6e2886ceb79fb72.zip cpython-1c6192662da753cfefc12f05c6e2886ceb79fb72.tar.gz cpython-1c6192662da753cfefc12f05c6e2886ceb79fb72.tar.bz2 |
Update the Windows makefile for 2.3.
Diffstat (limited to 'Parser')
-rw-r--r-- | Parser/grammar.mak | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Parser/grammar.mak b/Parser/grammar.mak index bbb83aa..c4cc1b5 100644 --- a/Parser/grammar.mak +++ b/Parser/grammar.mak @@ -7,12 +7,12 @@ # nmake /f grammar.mak clean # # I don't understand the maze of preprocessor #define's on Windows, and -# as a result this requires linking with python22.lib, so it's of no use +# as a result this requires linking with python23.lib, so it's of no use # for bootstrapping (the cause appears to be a useless-- in this # particular case --pragma in PC\pyconfig.h, which demands that -# python22.lib get linked in). +# python23.lib get linked in). -LIBS= ..\PCbuild\python22.lib +LIBS= ..\PCbuild\python23.lib CFLAGS= /I ..\Include /I ..\PC /D MS_NO_COREDLL |