#
# E.g. setenv MACHINE rs ; make -e
#
# See src/Makefile for the supported MACHINEs.
#
#  2006/Dec/22
#
#  On Solaris, the value of PWD does not change when make is invoked
#  recursively.  Consequently, it is necessary to explicitly set it
#  at the start of the makefile.
#
PWD = $(shell pwd)

SHELL=/bin/sh

OKFILES = Makefile unitools lno 

all: unitoolsdir lnodir testaldordir

clean::
	@ rm -f *~

junk::	
	@ ls -d $(OKFILES) * | sort | grep -v CVS | uniq -u

unitoolsdir: 
	(cd unitools ; $(MAKE) all)
clean::
	(cd unitools ; $(MAKE) clean)
junk::
	(cd unitools ; $(MAKE) junk)


lnodir: 
	(cd lno ; $(MAKE) all)
clean::
	(cd lno ; $(MAKE) clean)
junk::
	(cd lno ; $(MAKE) junk)

testaldordir:
	(cd testaldor ; $(MAKE) all )
clean::
	(cd lno ; $(MAKE) clean)
junk::
	(cd lno ; $(MAKE) junk)

