head	1.2;
access;
symbols
	TIGRIS_1_0_5:1.1
	TIGRIS_1_0:1.1.0.2;
locks; strict;
comment	@# @;


1.2
date	2001.06.15.18.40.05;	author ed;	state Exp;
branches;
next	1.1;

1.1
date	2001.01.07.19.30.00;	author jrobbins;	state Exp;
branches
	1.1.2.1;
next	;

1.1.2.1
date	2001.06.22.05.29.39;	author ed;	state Exp;
branches;
next	;


desc
@@


1.2
log
@separate out the install-data target
@
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-data:
	@@echo 'Installing data for $(PROJECT)'; \
	cd data ; make install ; cd .. ; \
	echo 'Done installing data for $(PROJECT)'

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


# Clean target
#
.PHONY: clean
clean:

FORCE:
@


1.1
log
@added needed makefiles and standrad dirs
@
text
@d22 5
@


1.1.2.1
log
@separate out install-data target
@
text
@a24 3
install-data:
	@@cd data; make install

@


