Files
zoneminder/Makefile.am
stan 72da78e98a Added zm.conf feature.
git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@1170 e3e1d417-86f3-4887-817a-d78f3d33393f
2004-12-28 16:46:48 +00:00

28 lines
470 B
Makefile

AUTOMAKE_OPTIONS = gnu
# And these to the user and group of your webserver
webuser = @WEB_USER@
webgroup = @WEB_GROUP@
sysconf_DATA = \
zm.conf
SUBDIRS = \
src \
web \
scripts \
db
EXTRA_DIST = \
zmconfig.pl.in \
zmconfig_eml.txt \
zmconfig_msg.txt \
README.html \
README.pdf \
README.rtf
# Yes, you are correct. This is a HACK!
install-data-hook:
( cd $(DESTDIR)$(sysconfdir); chown $(webuser):$(webgroup) $(sysconf_DATA); chmod 600 $(sysconf_DATA) )