Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com> Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
20 lines
393 B
Makefile
20 lines
393 B
Makefile
include ../defines.mk
|
|
SUBDIRS = images css manager6 touch mobile
|
|
|
|
all:
|
|
|
|
.PHONY: install
|
|
install:
|
|
set -e && for i in ${SUBDIRS}; do ${MAKE} -C $$i $@; done
|
|
install -m 0644 index.html.tpl ${WWWBASEDIR}
|
|
install -d ${WWWJSDIR}
|
|
install -m 0644 u2f-api.js ${WWWJSDIR}
|
|
|
|
.PHONY: check
|
|
check:
|
|
${MAKE} -C manager6 $@
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
set -e && for i in ${SUBDIRS}; do ${MAKE} -C $$i $@; done
|