update msg/txt, add new ShelCmds docs
[goodguy/history.git] / cinelerra-5.1 / doc / Makefile
index fc770a3dcbf800a7d4e1933ce341f1f74056536b..85367091c330bfb9fdb1ac2d31bfa41c050e8fc0 100644 (file)
@@ -1,5 +1,4 @@
-TOPDIR ?= $(CURDIR)/..
-export TOPDIR
+export TOPDIR ?= $(CURDIR)/..
 include $(TOPDIR)/global_config
 
 TARGET_DIR := $(BINDIR)/doc
@@ -28,7 +27,6 @@ IMAGES = \
        mask.png \
        mutepatch_up.png \
        paste.png \
-       picon.png \
        projector.png \
        protect.png \
        recordpatch.png \
@@ -45,18 +43,22 @@ OUTPUT := cinelerra.html
 
 all: $(OUTPUT)
 
-$(OUTPUT):
-       tar -C ../plugins/theme_suv/data/ -cf - $(IMAGES) | tar -xkf -
+$(OUTPUT): $(IMAGES)
        makeinfo --html --no-split cinelerra.texi
 #      makeinfo --html cinelerra.texi
 
-install:
+$(IMAGES):
+       cp $(PLUGINS)/theme_suv/data/$@ .
+
+install:       all
        mkdir -p $(TARGET_DIR)
        cp -a *.png $(TARGET_DIR)/.
+       cp -a ShellCmds*.* $(TARGET_DIR)/.
        cp -a cinelerra.html $(TARGET_DIR)/.
-       cp -a manual.pdf $(TARGET_DIR)/.
        cp -a Features5.pdf $(TARGET_DIR)/.
+       cp -a shortcuts.html $(TARGET_DIR)/.
+       cp -a RenderMux.sh $(TARGET_DIR)/.
 
 clean:
-       rm -f $(IMAGES) $(OUTPUT)
+       rm -f $(OUTPUT) $(IMAGES)