#
# File: ccg/Makefile
# Author:  K.R. Sloan
# Last Modified: 28 October 1992
# Purpose: help install/distribute ccg
#
# Disclaimer: this is just for my convenience.  It probably won't help
#             you at all.  Don't complain to me that it's no good
# Instructions: use this as a guide to other makefiles, which you will
#               probably have to tweak by hand.  Sorry.      

ARCH = SS1

tar: 
	tar -covf ../ccg.tar \
            Makefile data include src test scripts CONVEX
	compress ../ccg.tar
	chmod a+r ../ccg.tar.Z

install:
	mkdir ${ARCH}bin
	(cd src; make install; make clean)
	(cd test; make install; make clean)
	(cd CONVEX/Sloan; make install; make clean)
            
clean: 
	rm -f *.o *.bak *.ckp *~ \#* .emac* core
	ls -l
