##  Makefile for the SR report
#
#   This directory contains the source for the ``Revised Report on the SR
#   Language'', which serves as the reference manual for the language.


SHELL = /bin/sh

ROFF = psroff -t

BODY = sec1 sec2 sec3 sec4 sec5 sec6 sec7 sec8 sec9
APPS = appendix1 appendix2 appendix3 appendix4
ALL = cover contents $(BODY) $(APPS)


report.ps:	Makefile script.sed macros.tr $(ALL)	
	sed -f script.sed $(ALL) | $(ROFF) -me macros.tr - >report.ps
