###############################
# Makefile for printing out the 
# SUIT documentation in parts
##############################


# Change this if you have another 
# command to send postscript files to
# a printer
PRINT = lpr

# Change this to the name of the printer to use
PRINTER_NAME = postscript

##################################################

all_docs:
	$(PRINT) -P$(PRINTER_NAME) MANIFEST
	$(PRINT) -P$(PRINTER_NAME) Tutorial.ps
	$(PRINT) -P$(PRINTER_NAME) chap_01.ps
	$(PRINT) -P$(PRINTER_NAME) chap_02.ps
	$(PRINT) -P$(PRINTER_NAME) chap_03.ps
	$(PRINT) -P$(PRINTER_NAME) chap_04.ps
	$(PRINT) -P$(PRINTER_NAME) chap_05.ps
	$(PRINT) -P$(PRINTER_NAME) chap_06.ps
	$(PRINT) -P$(PRINTER_NAME) chap_07.ps
	$(PRINT) -P$(PRINTER_NAME) chap_08.ps
	$(PRINT) -P$(PRINTER_NAME) chap_09.ps
	$(PRINT) -P$(PRINTER_NAME) chap_10.ps
	$(PRINT) -P$(PRINTER_NAME) chap_11.ps
	$(PRINT) -P$(PRINTER_NAME) chap_12.ps
	$(PRINT) -P$(PRINTER_NAME) chap_13.ps
	$(PRINT) -P$(PRINTER_NAME) chap_14.ps
	$(PRINT) -P$(PRINTER_NAME) chap_15.ps
	$(PRINT) -P$(PRINTER_NAME) chap_16.ps
	$(PRINT) -P$(PRINTER_NAME) X_srgp.ps

## A cheaper version for BEGINNERS wanting 
### to cut down on paper use (a little).

economy_docs:
	$(PRINT) -P$(PRINTER_NAME) Tutorial.ps
	$(PRINT) -P$(PRINTER_NAME) chap_01.ps
	$(PRINT) -P$(PRINTER_NAME) chap_02.ps
	$(PRINT) -P$(PRINTER_NAME) chap_03.ps
	$(PRINT) -P$(PRINTER_NAME) chap_04.ps
	$(PRINT) -P$(PRINTER_NAME) chap_05.ps
	$(PRINT) -P$(PRINTER_NAME) chap_07.ps
	$(PRINT) -P$(PRINTER_NAME) chap_08.ps
	$(PRINT) -P$(PRINTER_NAME) chap_09.ps
	$(PRINT) -P$(PRINTER_NAME) chap_11.ps

### for just the reference manual
ref_man:	
	$(PRINT) -P$(PRINTER_NAME) chap_all.ps
