pve-manager/www/Makefile
Dominik Csapak 9c1c2c2ea4 add the index.html.tpl files for the default ui and touch
they are mostly copied from ExtJSIndex.pm and TouchIndex.pm, and
they are prepared with the Template::Toolkit syntax

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
2017-03-09 10:34:07 +01:00

14 lines
316 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 -o www-data -g www-data index.html.tpl ${WWWBASEDIR}