64364852e1
this is neither necessary, nor useful those files are meant to be read only anyway, so there is no gain in them being owned by www-data Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
14 lines
292 B
Makefile
14 lines
292 B
Makefile
include ../defines.mk
|
|
SUBDIRS = images css manager6 touch mobile
|
|
|
|
all: ${SUBDIRS} index.html.tpl
|
|
|
|
%:
|
|
set -e && for i in ${SUBDIRS}; do ${MAKE} -C $$i $@; done
|
|
|
|
.PHONY: install
|
|
install:
|
|
set -e && for i in ${SUBDIRS}; do ${MAKE} -C $$i $@; done
|
|
install -m 0644 index.html.tpl ${WWWBASEDIR}
|
|
|