
########################################################
# You shouldn't need to change anything below this line

include ../configure

DIRS = occheck tl2strl

help:
	@echo "Pick one of the following targets:"
	@echo "    make all          - compile TempEst tools"
	@echo "    make install      - install tools"
	@echo "    make clean        - clean"

all:
	for i in $(DIRS) ; do \
	(cd $$i; $(MAKE) all "ARCH=`../../bin/arch-n-opsys`"); \
	done

install: all
	for i in $(DIRS) ; do \
	(cd $$i; $(MAKE) install "ARCH=`../../bin/arch-n-opsys`"); \
	done

clean:
	for i in $(DIRS) ; do \
	(cd $$i; $(MAKE) clean "ARCH=`../../bin/arch-n-opsys`"); \
	done
