[net.unix-wizar] question about make

ucbcad:ucbesvax.turner (04/29/83)

#N:ucbesvax:9800002:000:195
ucbesvax!turner    Apr 28 18:00:00 1983


#
# Does anyone know why I'm getting a syntax error here?   I'm trying to
# generate numbered ".n" files from ".c" files.
#
.SUFFIXES: .n

.c.n:
    num $< > $@

print: *.n
	print $< ; rm *.n
	

ucbcad:ucbesvax.turner (04/30/83)

#N:ucbesvax:9800003:000:254
ucbesvax!turner    Apr 29 04:58:00 1983


	I have received a satisfactory answer to my question.  It
    seems that one must indent make actions with a tab, if on
    a different line than the dependencies.  Alternatively,
    actions may follow dependencies, separated by ';'.

	Michael Turner