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


1.4
date	2001.08.13.21.16.20;	author kmaples;	state Exp;
branches;
next	1.3;

1.3
date	2001.06.19.05.54.10;	author kmaples;	state Exp;
branches;
next	1.2;

1.2
date	2001.06.19.01.08.56;	author kmaples;	state Exp;
branches;
next	1.1;

1.1
date	2001.04.30.20.47.10;	author kmaples;	state Exp;
branches;
next	;


desc
@@


1.4
log
@Changed makefiles and http conf fragments to be consistent with the rest of
the Helm-managed components.
@
text
@######################################################################
# -*- Makefile -*- developed for a Unix system.
#

include Makefile.config

default: build

build: 

install: create-directories
	@@echo 'Building $(PROJECT)'; \
	for d in $(BUILD_DIRS); do \
	  cd $${d}; \
	  make $(TARGET); \
	  cd ..; \
	done; \
	unset d; \
	echo 'Done building $(PROJECT)'

create-directories:
	if [ ! -d $(SERVER_DATA_DIR) ]; then \
	  mkdir -p $(SERVER_DATA_DIR); \
	fi;

# Clean target
#
.PHONY: clean
clean:

@


1.3
log
@Restoring tabs.
@
text
@d7 4
d12 5
a16 10
	@@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); \
d18 2
a19 3
	echo 'Installation of project configuration files complete'; \
	unset registry f ; \
	true 
d23 1
a23 1
		mkdir -p $(SERVER_DATA_DIR); \
@


1.2
log
@Changes to store IZ's data under $SANDBOX/data/issuezilla/, along with
everyone else.  This relocates IZ's data/ and shadow/ directories there.
@
text
@d8 14
a21 14
        @@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 
d24 3
a26 3
        if [ ! -d $(SERVER_DATA_DIR) ]; then \
                mkdir -p $(SERVER_DATA_DIR); \
        fi;
a31 1

@


1.1
log
@Initial checkin of IssueZilla as a module in advance of removing it from
the sandbox module
@
text
@d7 15
a21 15
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 
d23 4
d32 1
@

