|
|
@ -7,8 +7,10 @@ nextbuilddir = .next |
|
|
|
|
|
|
|
|
|
|
|
# List of paths relative to the build output directory.
|
|
|
|
# List of paths relative to the build output directory.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
outindexpage = index.html
|
|
|
|
outpages = \
|
|
|
|
outserverpage = server.html
|
|
|
|
index.html \
|
|
|
|
|
|
|
|
server.html \
|
|
|
|
|
|
|
|
file-manager.html
|
|
|
|
outjsmodulesdir = _next
|
|
|
|
outjsmodulesdir = _next
|
|
|
|
outimagesdir = pngs
|
|
|
|
outimagesdir = pngs
|
|
|
|
|
|
|
|
|
|
|
@ -90,9 +92,7 @@ build: $(nodemodulesdir) |
|
|
|
install-data-hook: |
|
|
|
install-data-hook: |
|
|
|
-@echo "Place build output files."
|
|
|
|
-@echo "Place build output files."
|
|
|
|
(cd $(srcdir)/$(nextoutdir); \
|
|
|
|
(cd $(srcdir)/$(nextoutdir); \
|
|
|
|
cp -r --no-preserve=mode \
|
|
|
|
cp -r --no-preserve=mode $(outpages) $(outjsmodulesdir) $(DESTDIR)/$(htmldir)/ \
|
|
|
|
$(outindexpage) $(outserverpage) $(outjsmodulesdir) \
|
|
|
|
|
|
|
|
$(DESTDIR)/$(htmldir)/ \
|
|
|
|
|
|
|
|
)
|
|
|
|
)
|
|
|
|
-@echo "Create symlink to images to enable borrowing icon etc. without duplicating."
|
|
|
|
-@echo "Create symlink to images to enable borrowing icon etc. without duplicating."
|
|
|
|
(cd $(DESTDIR)/$(htmldir); $(LN_S) skins/alteeve/images $(outimagesdir))
|
|
|
|
(cd $(DESTDIR)/$(htmldir); $(LN_S) skins/alteeve/images $(outimagesdir))
|
|
|
@ -100,7 +100,7 @@ install-data-hook: |
|
|
|
uninstall-hook: |
|
|
|
uninstall-hook: |
|
|
|
-@echo "Remove all installed files of the current module."
|
|
|
|
-@echo "Remove all installed files of the current module."
|
|
|
|
(cd $(DESTDIR)/$(htmldir); \
|
|
|
|
(cd $(DESTDIR)/$(htmldir); \
|
|
|
|
rm -rf $(outindexpage) $(outserverpage) $(outjsmodulesdir) $(outimagesdir) \
|
|
|
|
rm -rf $(outpages) $(outjsmodulesdir) $(outimagesdir) \
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
clean-local: |
|
|
|
clean-local: |
|
|
|