]> git.proxmox.com Git - proxmox-backup.git/blobdiff - www/Makefile
tape: use WorkerTask for erase and rewind
[proxmox-backup.git] / www / Makefile
index f9d8f8e47ef5cb8db628512171ad7366e55bdb3f..493d194f84248d360eb63286ff03470be94aee70 100644 (file)
@@ -4,6 +4,13 @@ IMAGES := \
        images/logo-128.png \
        images/proxmox_logo.png
 
+TAPE_UI_FILES=
+
+ifdef TEST_TAPE_GUI
+TAPE_UI_FILES=                                         \
+       TapeManagement.js
+endif
+
 JSSRC=                                                 \
        Utils.js                                        \
        form/UserSelector.js                            \
@@ -43,6 +50,8 @@ JSSRC=                                                        \
        panel/Tasks.js                                  \
        panel/XtermJsConsole.js                         \
        panel/AccessControl.js                          \
+       panel/StorageAndDisks.js                        \
+       panel/UsageChart.js                             \
        ZFSList.js                                      \
        DirectoryList.js                                \
        LoginView.js                                    \
@@ -56,9 +65,12 @@ JSSRC=                                                       \
        datastore/Content.js                            \
        datastore/OptionView.js                         \
        datastore/Panel.js                              \
+       datastore/DataStoreListSummary.js               \
+       datastore/DataStoreList.js                      \
        ServerStatus.js                                 \
        ServerAdministration.js                         \
        Dashboard.js                                    \
+       ${TAPE_UI_FILES}                                \
        NavigationTree.js                               \
        Application.js                                  \
        MainView.js
@@ -79,7 +91,7 @@ js/proxmox-backup-gui.js: .lint-incremental js OnlineHelpInfo.js ${JSSRC}
 
 .PHONY: check
 check:
-       eslint ${JSSRC}
+       eslint --strict ${JSSRC}
        touch ".lint-incremental"
 
 .lint-incremental: ${JSSRC}