pve-manager/www/mobile/Makefile
Thomas Lamprecht 53f669b13e Implement VMSummaryBase class
As the lxc and qemu summary pages share almost all the code we
implement a base class which provides the shared functionality.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2015-09-24 06:51:09 +02:00

45 lines
837 B
Makefile

include ../../defines.mk
JSSRC= \
../ext4/extjs/src/util/Cookies.js \
../manager/Utils.js \
../manager/Parser.js \
Toolkit.js \
PVEProxy.js \
MenuButton.js \
PVEBar.js \
Workspace.js \
NodeSelector.js \
RealmSelector.js \
Login.js \
TaskList.js \
TaskViewer.js \
Datacenter.js \
NodeSummary.js \
Migrate.js \
VMSummaryBase.js \
QemuSummary.js \
LXCSummary.js \
app.js
all: pvemanager-mobile.js
pvemanager-mobile.js: ${JSSRC}
cat ${JSSRC} >$@.tmp
mv $@.tmp $@
.PHONY: install
install: pvemanager-mobile.js
install -d ${WWWTOUCHDIR}
install -m 0644 pvemanager-mobile.js ${WWWTOUCHDIR}
chown -R www-data:www-data ${WWWTOUCHDIR}
.PHONY: distclean
distclean: clean
.PHONY: clean
clean:
rm -rf *~ pvemanager-mobile.js