1 # We can't print the list in one go, as it might be longer than a
2 # shell command is allowed (as of linux 2.6.3x >131000 chars)
3 # Split it up into 10 300-element chunks, and one chunk containing the rest
4 # if we have more than 3000 elements.
5 $(outdir)/collated-files.list: $(COLLATED_FILES)
6 @echo $(wordlist 1, 299,$^)>$@
7 @echo $(wordlist 300, 599,$^)>>$@
8 @echo $(wordlist 600, 899,$^)>>$@
9 @echo $(wordlist 900,1199,$^)>>$@
10 @echo $(wordlist 1200,1499,$^)>>$@
11 @echo $(wordlist 1500,1799,$^)>>$@
12 @echo $(wordlist 1800,2099,$^)>>$@
13 @echo $(wordlist 2100,2399,$^)>>$@
14 @echo $(wordlist 2400,2699,$^)>>$@
15 @echo $(wordlist 2700,2999,$^)>>$@
16 @echo $(wordlist 3000,$(words $^),$^)>>$@
18 $(outdir)/collated-files.tely: $(outdir)/collated-files.list
19 $(LYS_TO_TELY) --name=$(outdir)/collated-files.tely --title="$(TITLE)" --author="$(AUTHOR)" --input-filename=$^