start the GUI
This commit is contained in:
16
www/Makefile
Normal file
16
www/Makefile
Normal file
@ -0,0 +1,16 @@
|
||||
JSSRC= \
|
||||
Logo.js \
|
||||
Application.js \
|
||||
MainView.js
|
||||
|
||||
all: proxmox-backup-gui.js
|
||||
|
||||
proxmox-backup-gui.js: ${JSSRC}
|
||||
cat ${JSSRC} >$@.tmp
|
||||
mv $@.tmp $@
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
find . -name '*~' -exec rm {} ';'
|
||||
rm -r proxmox-backup-gui.js
|
||||
|
Reference in New Issue
Block a user