head	1.4;
access;
symbols
	TIGRIS_1_1_0RC2:1.4
	TIGRIS_1_1_0RC1:1.4
	TIGRIS_1_1:1.4.0.12
	TIGRIS_1_0_8:1.4
	TIGRIS_1_0_8RC3:1.4
	TIGRIS_1_0_8RC2:1.4
	TIGRIS_1_0_8RC1:1.4
	TIGRIS_1_0_7:1.4
	TIGRIS_1_0_7RC3:1.4
	TIGRIS_1_0_7RC2:1.4
	TIGRIS_1_0_7RC1:1.4
	TIGRIS_1_0_6:1.4
	TIGRIS_1_0_6RC5:1.4
	TIGRIS_1_0_6RC4:1.4
	TIGRIS_1_0_6RC3:1.4
	TIGRIS_1_0_6RC2:1.4
	TIGRIS_1_0_6RC1:1.4
	TIGRIS_1_0_5:1.4
	TIGRIS_1_0_5RC6:1.4
	TIGRIS_1_0_5RC5:1.4
	TIGRIS_1_0_5RC4:1.4
	TIGRIS_1_0_5RC3:1.4
	TIGRIS_1_0_5RC2:1.4
	TIGRIS_1_0_5RC1:1.4
	TIGRIS_1_0_4:1.4
	TIGRIS_1_0_3:1.4
	TIGRIS_1_0_2:1.4
	TIGRIS_1_0_1:1.4
	TIGRIS_1_0:1.4.0.14
	TIGRIS_1_0_0:1.4
	TIGRIS_1_0_0_RC1:1.4.0.10
	HELM_PEER_PORT_BRANCH:1.4.0.8
	TIGRIS_0_9_2_4:1.4
	TIGRIS_0_9_2_3:1.4
	TIGRIS_0_9_2:1.4.0.6
	TIGRIS_0_9_0:1.4.0.4
	TIGRIS_0_8_4:1.4.0.2
	TIGRIS_710_FF:1.3
	TIGRIS_706:1.3
	TIGRIS_705:1.3
	TIGRIS_704:1.3
	TIGRIS_703:1.3
	TIGRIS_702:1.3
	TIGRIS_701:1.2
	TIGRIS_SEP_13_2000:1.2.0.2
	TIGRIS_BASELINE:1.2;
locks; strict;
comment	@# @;


1.4
date	2000.11.07.00.20.22;	author stack;	state Exp;
branches;
next	1.3;

1.3
date	2000.10.17.17.06.13;	author stack;	state Exp;
branches;
next	1.2;

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

1.1
date	2000.08.23.17.30.55;	author ed;	state Exp;
branches;
next	;


desc
@@


1.4
log
@Added a 'clean' target
@
text
@######################################################################
# -*- Makefile -*- developed for a Unix system.
#

include Makefile.config

install:
	@@echo 'Installing project configuration files to sandbox'; \
	for f in $(HTTPD_CONF_FILES); do \
	  echo "  $${f}"; \
	  if [ -f $(HTTPD_CONF_DIR)/$${f}.orig ]; then \
	    rm -f $(HTTPD_CONF_DIR)/$${f}.orig; \
	  fi; \
	  if [ -f $(HTTPD_CONF_DIR)/$${f} ]; then \
	    mv $(HTTPD_CONF_DIR)/$${f} $(HTTPD_CONF_DIR)/$${f}.orig; \
	  fi; \
	  cp -f $${f}* $(HTTPD_CONF_DIR); \
	done; \
	echo 'Installation of project configuration files complete'; \
	unset registry f; \
	true


# Clean target
#
.PHONY: clean
clean:


@


1.3
log
@On make install, was annoyingly asking you if you were sure you wanted to overwrite the old configuration backup.  Now the old backup property files are first removed. We then make backup of what's currently there and thereafter copy into place new property files
@
text
@d24 5
@


1.2
log
@unset may return a false value ; use true to ensure that make understands
things completed successfully.
@
text
@d11 3
@


1.1
log
@large changes corresponding to the conf file reorganization.  the apache
conf files are now all contained in a directory, and combined into
the real httpd.conf file.  registry.httpd.conf is no more.
@
text
@d17 4
a20 1
	unset registry f
@

