mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-03 23:46:58 +00:00

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>
45 lines
837 B
Makefile
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
|
|
|