#
# /xV/libc/buildmitemplate
#
# Date Written      : February 24, 1985
# Programmer        : james Wilson
#
#     This template is to be included in all of the machine independent
# makefiles. This will allow the "make all" command to create all of the
# object modules in the corresponding machine dependent directories.

#include ../buildprefix

default:
	domake "$(SUBDIRS)" "build"

install:
	domake "$(SUBDIRS)" "build install"

install-all:
	domake "$(SUBDIRS)" "build install-all"

all:
	domake "$(SUBDIRS)" "build all"

clean:
	rm -f  *CKP *BAK *.b *.o .emacs*
	domake "$(SUBDIRS)" "build clean"

object.list:
	domake "$(SUBDIRS)" "build object.list"

depend:
	domake "$(SUBDIRS)" "build depend"

lint-lib:
	domake "$(SUBDIRS)" "build lint-lib"
