From 3ef676304a5e4fedc9ffb8238db67d89dd3dadf7 Mon Sep 17 00:00:00 2001 From: Tsu-ba-me Date: Fri, 18 Mar 2022 21:11:54 -0400 Subject: [PATCH] build(striker-ui-api): include file-manager page in distribution --- striker-ui/Makefile.am | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/striker-ui/Makefile.am b/striker-ui/Makefile.am index ebc80925..20599398 100644 --- a/striker-ui/Makefile.am +++ b/striker-ui/Makefile.am @@ -7,8 +7,10 @@ nextbuilddir = .next # List of paths relative to the build output directory. # -outindexpage = index.html -outserverpage = server.html +outpages = \ + index.html \ + server.html \ + file-manager.html outjsmodulesdir = _next outimagesdir = pngs @@ -90,9 +92,7 @@ build: $(nodemodulesdir) install-data-hook: -@echo "Place build output files." (cd $(srcdir)/$(nextoutdir); \ - cp -r --no-preserve=mode \ - $(outindexpage) $(outserverpage) $(outjsmodulesdir) \ - $(DESTDIR)/$(htmldir)/ \ + cp -r --no-preserve=mode $(outpages) $(outjsmodulesdir) $(DESTDIR)/$(htmldir)/ \ ) -@echo "Create symlink to images to enable borrowing icon etc. without duplicating." (cd $(DESTDIR)/$(htmldir); $(LN_S) skins/alteeve/images $(outimagesdir)) @@ -100,7 +100,7 @@ install-data-hook: uninstall-hook: -@echo "Remove all installed files of the current module." (cd $(DESTDIR)/$(htmldir); \ - rm -rf $(outindexpage) $(outserverpage) $(outjsmodulesdir) $(outimagesdir) \ + rm -rf $(outpages) $(outjsmodulesdir) $(outimagesdir) \ ) clean-local: