9c1c2c2ea4
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>
14 lines
316 B
Makefile
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}
|
|
|