SHELL=/bin/sh
# Vortex Tracker makefile
#------------
# Include machine dependent compile & load options
#------------

SUBDIRS = hmon_gettrk hmon_vint hmon_tave

all: $(SUBDIRS)

$(SUBDIRS)::
	cd $@ ; make

clean::
	@for dir in $(SUBDIRS); do                                       \
           ( cd $$dir; echo "Making $@ in `pwd`" ;                       \
             $(MAKE) $@ );                                               \
        done