From: Guido van Rossum Date: Sun, 9 Aug 1998 03:55:31 +0000 (+0000) Subject: There's a bunch of files that shouldn't be included in libpython*.a! X-Git-Tag: v1.5.2a1~69 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c3e3e6486fa1e3f3667c929740d31c6cdb33661a;p=thirdparty%2FPython%2Fcpython.git There's a bunch of files that shouldn't be included in libpython*.a! --- diff --git a/Parser/Makefile.in b/Parser/Makefile.in index db61255e2c98..bf35805fdcd9 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