#
# File: TD/Makefile
# Author:  K.R. Sloan
# Last Modified: 23 December 1992
# Purpose: help install/distribute TD code
#
# 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 ../TD.tar \
            Makefile src scripts data/USIC92 data/Test 
	compress ../TD.tar
	chmod a+r ../TD.tar.Z

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