Path: utzoo!utgpu!water!watmath!uunet!tut.cis.ohio-state.edu!rutgers!labrea!agate!ucbvax!draco.Berkeley.EDU!shs From: shs@draco.Berkeley.EDU (Steve Schoettler) Newsgroups: gnu.utils.bug Subject: Bug in Make 3.05 Keywords: make Message-ID: <26610@ucbvax.BERKELEY.EDU> Date: 28 Oct 88 22:09:53 GMT Sender: usenet@ucbvax.BERKELEY.EDU Reply-To: shs@draco.Berkeley.EDU (Steve Schoettler) Organization: University of California, Berkeley Lines: 25 The following Makefile core dumps with make version 3.05 on Sun 3 under 3.5. (That's make compiled with gcc version 1.29) If you type "make", you get "IOT trap, core dump". If you type "make -n", you also get a core dump. If you type "make int" or "make release", it works. If you comment out the ".SUFFIXES" and ".c.go" rule, it also works. Steve ----------- cut here -------------------- all: int int: make release release: rm -f $(RFILES) .SUFFIXES: .go .c .c.go: cc ${CFLAGS} -c $(TFLAGS) $*.c mv $*.o $*.go