pve-manager/www/Makefile
Emmanuel Kasper af2a8bb227 Add makefile targets for the ext js framework in version 5.1 (gpl)
This commit only installs the required javascript / css files for ext js 5.1
in /usr/share/pve-manager/ext5, but does not use it by default, as we have to sort out
the upgrade issues between 4.0 and 5.1 before.

Signed-off-by: Emmanuel Kasper <e.kasper@proxmox.com>
2015-03-31 06:13:59 +02:00

8 lines
143 B
Makefile

SUBDIRS = images ext4 ext5 css manager bootstrap touch mobile
all: ${SUBDIRS}
%:
set -e && for i in ${SUBDIRS}; do ${MAKE} -C $$i $@; done