zoneminder/web/Makefile.am

20 lines
737 B
Makefile

AUTOMAKE_OPTIONS = gnu
# This should be set to your CGI directory
webdir = @WEB_PREFIX@
# And these to the user and group of your webserver
webuser = @WEB_USER@
webgroup = @WEB_GROUP@
web_DATA = zmactions.php zmconfig.php zmdb.php zmfuncs.php zmhtml.php zm.php zmstyles.css zmwml.php
EXTRA_DIST = $(web_DATA)
# Yes, you are correct. This is a HACK!
install-data-local:
( cd $(webdir); chown $(webuser):$(webgroup) $(web_DATA) )
@-( cd $(webdir); mkdir images; chown $(webuser):$(webgroup) images; chmod u+w images )
@-( cd $(webdir); mkdir sounds; chown $(webuser):$(webgroup) sounds; chmod u+w sounds )
@-( cd $(webdir); mkdir temp; chown $(webuser):$(webgroup) temp; chmod u+w temp )
-( cd $(webdir); ln -s zm.php index.php )