#
# Main makefile for PCCTS 1.20
#
# Terence Parr
# Purdue University
# March 1994
#
# this can be set to /user/local/bin etc...
BINDIR=bin
#CC=cc

.SILENT:

pccts:
	echo
	echo "               Welcome to PCCTS 1.20 installation"
	echo "                     Released April 1, 1994"
	echo
	echo "                           Featuring"
	echo "         ANTLR  -- ANother Tool for Language Recognition"
	echo "         DLG    -- DFA-based Lexical Analyzer"
	echo "         C      -- ANSI grammar with symbol table management (not yet)"
	echo "         Pascal -- ISO Pascal with symbol table management (not yet)"
	echo
#
	echo Making executables...
	(cd antlr; make -s)
	echo antlr executable now in $(BINDIR)
	(cd dlg; make -s)
	echo dlg executable now in $(BINDIR)
	(cd support/genmk; make -s; mv genmk ../../$(BINDIR))
	echo genmk executable now in $(BINDIR)
	echo
	echo "       PCCTS 1.20 installation complete (have a nice day)"
