#!/usr/local/gnu/bin/make
#
# This make file builds the unify library
#
# History
# -------
# $Log: Makefile,v $
# Revision 1.2  1998/02/19  20:21:25  dieter
# Do not use the -C option becuase Sun make does not support it.
#
# Revision 1.1  1997/09/22  22:23:04  dieter
# Initial revision
#
#
SUBDIRS = src

all: dummy
	for dir in $(SUBDIRS); do cd $$dir; $(MAKE); cd ..; done

clean: dummy
	for dir in $(SUBDIRS); do cd $$dir; $(MAKE) clean; cd ..; done

depend: dummy
	for dir in $(SUBDIRS); do cd $$dir; $(MAKE) depend; cd ..; done

install: dummy
	for dir in $(SUBDIRS); do cd $$dir; $(MAKE) LIB_INSTALL_DIR=${LIB_INSTALL_DIR} install; cd ..; done

dummy:
