summaryrefslogtreecommitdiffstats
path: root/Parser
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-10-07 22:51:56 (GMT)
committerGuido van Rossum <guido@python.org>1998-10-07 22:51:56 (GMT)
commit2a570049acf2789bfbe2d907a188895249f17b62 (patch)
tree4b6114d0e99dbcfb5e11e1ebae7e305a45d1564f /Parser
parent2e23c3125a96d55509e227b34048a2f4bdce9f68 (diff)
downloadcpython-2a570049acf2789bfbe2d907a188895249f17b62.zip
cpython-2a570049acf2789bfbe2d907a188895249f17b62.tar.gz
cpython-2a570049acf2789bfbe2d907a188895249f17b62.tar.bz2
Changes to deal with the sigcheck+intrcheck vs. signalmodule controversy.
Diffstat (limited to 'Parser')
-rw-r--r--Parser/Makefile.in9
1 files changed, 7 insertions, 2 deletions
diff --git a/Parser/Makefile.in b/Parser/Makefile.in
index bf35805..5396680 100644
--- a/Parser/Makefile.in
+++ b/Parser/Makefile.in
@@ -34,7 +34,9 @@ POBJS= acceler.o grammar1.o \
parsetok.o tokenizer.o bitset.o \
metagrammar.o
-OBJS= $(POBJS) intrcheck.o myreadline.o
+AROBJS= $(POBJS) myreadline.o
+OBJS= $(AROBJS) intrcheck.o
+
PGENMAIN= pgenmain.o
@@ -54,7 +56,10 @@ all: $(PGEN) $(OBJS)
# This target is used by the master Makefile to add the objects to the library
add2lib: $(OBJS)
- $(AR) cr $(LIBRARY) $(OBJS)
+ $(AR) cr $(LIBRARY) $(AROBJS)
+ if test ! -f ../Modules/hassignal; \
+ then echo adding intrcheck.o; $(AR) r $(LIBRARY) intrcheck.o; \
+ else echo leaving intrcheck.o out; fi
touch add2lib
$(PGEN): $(PGENOBJS)