Changes to deal with the sigcheck+intrcheck vs. signalmodule controversy.
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 @@
 		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 @@
 
 # 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)