summaryrefslogtreecommitdiff
path: root/Parser
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-08-09 03:55:31 +0000
committerGuido van Rossum <guido@python.org>1998-08-09 03:55:31 +0000
commitf08b4533f5cee3c940802a247f7f16b0b2729bd1 (patch)
tree20cce139f51f3fb9fc05c589d400e5c87ddad2aa /Parser
parent66bf59da82688150a88bdd135491ad186063e129 (diff)
downloadcpython-f08b4533f5cee3c940802a247f7f16b0b2729bd1.tar.gz
There's a bunch of files that shouldn't be included in libpython*.a!
Diffstat (limited to 'Parser')
-rw-r--r--Parser/Makefile.in9
1 files changed, 5 insertions, 4 deletions
diff --git a/Parser/Makefile.in b/Parser/Makefile.in
index db61255e2c..bf35805fdc 100644
--- a/Parser/Makefile.in
+++ b/Parser/Makefile.in
@@ -32,16 +32,17 @@ SHELL= /bin/sh
POBJS= acceler.o grammar1.o \
listnode.o node.o parser.o \
parsetok.o tokenizer.o bitset.o \
- firstsets.o grammar.o metagrammar.o pgen.o \
- printgrammar.o
+ metagrammar.o
OBJS= $(POBJS) intrcheck.o myreadline.o
PGENMAIN= pgenmain.o
-PGENOBJS= $(PGENMAIN) $(POBJS)
+PGOBJS= firstsets.o grammar.o pgen.o printgrammar.o
-DOBJS= $(PGENMAIN) $(OBJS)
+PGENOBJS= $(PGENMAIN) $(POBJS) $(PGOBJS)
+
+DOBJS= $(PGENMAIN) $(OBJS) $(PGOBJS)
PGEN= pgen