#
# Top level makefile for Utah Raster Toolkit
#

# Subdirectories that get made
DIRS = lib tools get tex cnv

# SYS V Make reads this from environment, so override it
SHELL = /bin/sh

# default action just makes subdirs

all: default

# clean deletes all but source, pristine (below) deletes installed stuff, too
default clean: doit
	for d in $(DIRS) ; do ( cd $$d ; make $(MFLAGS) $@ ) ; done

# install puts library, binaries and documentation into global location
# (see individual makefiles for configuration variables)

install makefile pristine depend: doit
	for d in $(DIRS) man ; do ( cd $$d ; make $(MFLAGS) $@ ) ; done

doit:
