about summary refs log tree commit homepage
path: root/GNUmakefile
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2023-07-03 00:43:05 +0000
committerEric Wong <e@80x24.org>2023-07-03 02:06:52 +0000
commit02d3d1856fb9d9d41cf1711b9ad877b520a721e6 (patch)
treefac0a033e61b682c16f5204b0b3baea8af6e28b5 /GNUmakefile
parent56b5f6bfa937f1b8f274bf65aa9c71eaae7a7bfc (diff)
downloaddtas-02d3d1856fb9d9d41cf1711b9ad877b520a721e6.tar.gz
This generates a dtas-splitfx-compatible YAML snippet based
on a sorted list of audio tracks:

  dtas-2splitfx 1.flac 2.flac ... >tracks.yml
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 084a2d8..9019b31 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -82,7 +82,7 @@ bindir = $(prefix)/bin
 symlink-install :
         mkdir -p $(bindir)
         dtas=$(CURDIR)/dtas.sh && cd $(bindir) && \
-        for x in $(CURDIR)/bin/*; do \
+        for x in $(CURDIR)/bin/* $(CURDIR)/script/*; do \
                 ln -sf "$$dtas" $$(basename "$$x"); \
         done