summaryrefslogtreecommitdiff
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2003-04-17 14:55:42 +0000
committerGuido van Rossum <guido@python.org>2003-04-17 14:55:42 +0000
commit48065499338e746848b012c1d8d1a27865e8f16f (patch)
tree97b56bcdd8a06ffd98613227861b0e25da47e48b /Makefile.pre.in
parentfcf55ea4fd0f29c24db9ba416e323449ce9d6bbe (diff)
downloadcpython-48065499338e746848b012c1d8d1a27865e8f16f.tar.gz
Changes from Jonathan Riehl to allow his pgen extension (PEP 269) to
work. This includes some more code that used to be part of pgen in the main parser; I'm okay with that. I'll see if the Windows build needs work next.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 5313030935..d461346f12 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -194,7 +194,10 @@ POBJS= \
Parser/parser.o \
Parser/parsetok.o \
Parser/bitset.o \
- Parser/metagrammar.o
+ Parser/metagrammar.o \
+ Parser/firstsets.o \
+ Parser/grammar.o \
+ Parser/pgen.o
PARSER_OBJS= $(POBJS) Parser/myreadline.o Parser/tokenizer.o
@@ -202,9 +205,6 @@ PGOBJS= \
Objects/obmalloc.o \
Python/mysnprintf.o \
Parser/tokenizer_pgen.o \
- Parser/firstsets.o \
- Parser/grammar.o \
- Parser/pgen.o \
Parser/printgrammar.o \
Parser/pgenmain.o