########################################################################
#
# $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 =\
nph-webjob.cfg.sample\
webjob.cfg.sample
DST_FILES =\
${etcdir}/nph-webjob.cfg.sample\
${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}