1# 2# Copyright (c) 1988 Regents of the University of California. 3# All rights reserved. The Berkeley software License Agreement 4# specifies the terms and conditions for redistribution. 5# 6# @(#)Makefile 1.1 (Berkeley) 02/20/88 7# 8SRCS= kernmalloc.ms 9MACROS= -ms 10PRINTER=Plz 11EQN= deqn -${PRINTER} 12TROFF= ditroff -${PRINTER} 13 14paper: ${SRCS} 15 ${EQN} ${SRCS} | ${TROFF} ${MACROS} 16 17clean: 18 rm -f paper.[PT]* *.spell errs Errs make.out 19 20spell: ${SRCS} 21 @for i in ${SRCS}; do \ 22 echo $$i; spell $$i | sort | comm -23 - spell.ok > $$i.spell; \ 23 done 24