head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	2001.06.07.00.20.54;	author jrobbins;	state Exp;
branches;
next	;


desc
@@


1.1
log
@initial
@
text
@######################################################################
# -*- Makefile -*- developed for a Unix system.
#

include Makefile.config

# TODO: Determine whether a make install is necessary when the install target 
# is used.  Currently, not all Makefiles need both actions, as for some 
# Makefies the default target *is* install.  The current setup is horribly 
# inefficient, as some targets will be excercised twice upon a 
# `make; make install`.
build: FORCE
	@@echo 'Building $(PROJECT)'; \
	for d in $(BUILD_DIRS); do \
	  cd $${d}; \
	  make $(TARGET); \
	  cd ..; \
	done; \
	unset d; \
	echo 'Done building $(PROJECT)'

install:
	@@make TARGET=install | grep -v 'Entering directory '


# Clean target
#
.PHONY: clean
clean:

FORCE:
@
