########################################################################
#
# $Id: Makefile.in,v 1.14 2006/05/25 22:11:02 mavrik Exp $
#
########################################################################
#
# Purpose: Makefile for the project's etc directory.
#
########################################################################

#.SILENT:

prefix			= @prefix@
exec_prefix		= @exec_prefix@
etcdir			= @etcdir@
srcdir			= @srcdir@
VPATH			= ${srcdir}

INSTALL			= @INSTALL@
SRC_FILES		=\
			webjob.cfg.sample
DST_FILES		=\
			${etcdir}/webjob.cfg.sample

all: ${SRC_FILES}

test:

install: ${DST_FILES}
	@umask 22; if [ ! -d ${etcdir} ]; then mkdir -p ${etcdir}; fi
	@for i in ${SRC_FILES}; do\
		if test -f ${srcdir}/$$i; then file=${srcdir}/$$i; else file=$$i; fi;\
		${INSTALL} -m 644 $$file ${etcdir};\
	done

clean:

clean-all: clean
	rm -f Makefile

${DST_FILES}: ${SRC_FILES}



syntax highlighted by Code2HTML, v. 0.9.1