]> mj.ucw.cz Git - ucwmac.git/commitdiff
Makefile: Compile tests twice to get references right
authorMartin Mares <mj@ucw.cz>
Wed, 6 Jun 2018 09:54:36 +0000 (11:54 +0200)
committerMartin Mares <mj@ucw.cz>
Wed, 6 Jun 2018 09:54:36 +0000 (11:54 +0200)
Makefile

index 8ba18ab5b80374ae35587df280e23624c4a799f5..a67bafaf596a8ab0d0d0782b5769ea997020a781 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 VERSION=1.1
 ARCHIVE=ucwmac-$(VERSION).tar.gz
 
-all: test.pdf test-labels.pdf
+all: test.pdf test-labels.pdf test-ref.pdf
 
 MACROS=$(wildcard ucw*.tex)
 
@@ -13,6 +13,7 @@ export LUAINPUTS=.//:
 
 %.pdf: %.tex $(MACROS) ucw-luacsplain.fmt
        $(LUATEX) -file-line-error -fmt ucw-luacsplain $<
+       $(LUATEX) -file-line-error -fmt ucw-luacsplain $<
 
 %.fmt: %.ini
        $(LUATEX) -file-line-error -jobname $* -ini $<
@@ -23,6 +24,7 @@ else ifdef USE_DVI
 
 %.dvi: %.tex $(MACROS)
        csplain -file-line-error $<
+       csplain -file-line-error $<
 
 %.pdf: %.dvi
        dvipdfm -r 600 -o $@ -p a4 $<
@@ -31,6 +33,7 @@ else
 
 %.pdf: %.tex $(MACROS)
        pdfcsplain -file-line-error $<
+       pdfcsplain -file-line-error $<
 
 endif