From: utzoo!decvax!cca!chris.umcp-cs@UDel-Relay@sri-unix Newsgroups: net.unix-wizards Title: Re: Re: C extensions Article-I.D.: sri-unix.4361 Posted: Wed Nov 24 00:50:46 1982 Received: Thu Nov 25 07:56:50 1982 From: Chris Torek Date: 20 Nov 82 20:36:37 EST (Sat) Date: 16 Nov 1982 1351-PST From: HOLSTEGE at Cit-20 Subject: Re: Re: C extensions We have a utility here which reads the instructions for compiling a program directly out of the source itself.... We are thinking of replacing /usr/src/cmd/MAKE with this mechanism. Before you do that, think about people who use makefiles to make other things: nroff output, other languages, etc. I have used the following makefile occasionally: .SUFFIXES: .nr .out .xer .nr.out: nroff -me -Tlpr $< >$@ .nr.xer: nroff -me -Tx12-8 $< | xer -p12 -l8 >/dev/tty17 Somehow I don't think you can express that with your setup. If you have the commands in the C comments, nroff prints them. Nroff comments look like .\" (I think). In any case they are very different from any other type of comment I've ever seen.