# Makefile for FrontPubScreen
# 12 Apr 1992 john fieber (jfieber@sophia.smith.edu)

# SAS/C compiler options...
COPTS = -Lt -Li -O

# the command to run plain tex
PLAINTEX = virtex &plain

# The main targets
prog: FrontPubScreen
docs: FrontPubScreen.dvi
all: prog docs
clean:
	delete FrontPubScreen.(c|o|tex|toc|lnk|log)


# supporting targets
FrontPubScreen: FrontPubScreen.c
	lc $(COPTS) FrontPubScreen.c

FrontPubScreen.c: FrontPubScreen.w
	ctangle FrontPubScreen.w

FrontPubScreen.dvi: FrontPubScreen.tex
	$(PLAINTEX) FrontPubScreen.tex

FrontPubScreen.tex: FrontPubScreen.w
	cweave FrontPubScreen.w
