diff options
author | Robert Alessi <alessi@robertalessi.net> | 2021-03-14 10:22:06 +0100 |
---|---|---|
committer | Robert Alessi <alessi@robertalessi.net> | 2021-03-14 10:22:06 +0100 |
commit | fd2c4128141939720f8122c58807051d63fb1f59 (patch) | |
tree | 6ca3f8c77074972e5d6564cb063405a04506d2cc /Makefile | |
parent | 01b4f2311a844a702ca390deb66ee1100e64aed9 (diff) | |
download | ekdosis-fd2c4128141939720f8122c58807051d63fb1f59.tar.gz |
new general hook 'readingstyle'. better handling of 'postrefnum'
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -29,16 +29,16 @@ $(NAME).pdf: testsamples $(NAME).dtx | |||
29 | @ echo "Making the sample files first..." | 29 | @ echo "Making the sample files first..." |
30 | @ $(MAKE) --directory=$(SAMPLES) >/dev/null | 30 | @ $(MAKE) --directory=$(SAMPLES) >/dev/null |
31 | @ echo "Done making samples" | 31 | @ echo "Done making samples" |
32 | @ echo "Building the documentation of $(NAME). Please be patient..." | 32 | @ echo "Building the documentation of $(NAME) with $(CMP). Please be patient..." |
33 | @ $(do_documentation) | 33 | @ $(do_documentation) |
34 | @ echo "Now calling biber" | 34 | @ echo "Now calling biber" |
35 | @ biber $(NAME) >/dev/null | 35 | @ biber $(NAME) >/dev/null |
36 | @ echo "Returning to lualatex..." | 36 | @ echo "Returning to $(CMP)..." |
37 | @ for run in {1..4}; do $(do_documentation); done | 37 | @ for run in {1..4}; do $(do_documentation); done |
38 | @ echo "Building indexes..." | 38 | @ echo "Building indexes..." |
39 | @ if [ -f $(NAME).glo ]; then makeindex -q -s gglo.ist -o $(NAME).gls $(NAME).glo; fi | 39 | @ if [ -f $(NAME).glo ]; then makeindex -q -s gglo.ist -o $(NAME).gls $(NAME).glo; fi |
40 | @ if [ -f $(NAME).idx ]; then makeindex -q -s gind.ist -o $(NAME).ind $(NAME).idx; fi | 40 | @ if [ -f $(NAME).idx ]; then makeindex -q -s gind.ist -o $(NAME).ind $(NAME).idx; fi |
41 | @ echo "Final runs of lualatex..." | 41 | @ echo "Final runs of $(CMP)..." |
42 | @ for run in {1..3}; do $(call do_documentation); done | 42 | @ for run in {1..3}; do $(call do_documentation); done |
43 | @ echo "Done" | 43 | @ echo "Done" |
44 | 44 | ||