wedding invitation, different layout
This commit is contained in:
23
wedding-invi-vi/Makefile
Normal file
23
wedding-invi-vi/Makefile
Normal file
@@ -0,0 +1,23 @@
|
||||
DOC=thiep1
|
||||
INPUT=$(DOC).tex
|
||||
TARGET_EN=thiep_en
|
||||
TARGET_VI=thiep_vi
|
||||
TARGET=$(TARGET_VI).pdf
|
||||
TEX=xelatex
|
||||
QR=qrEvent_vi.png qrEvent_en.png
|
||||
|
||||
default: $(TARGET)
|
||||
|
||||
$(TARGET_EN).pdf: $(INPUT) Makefile $(QR)
|
||||
$(TEX) --jobname=$(TARGET_EN) $< && $(TEX) --jobname=$(TARGET_EN) $<
|
||||
|
||||
$(TARGET_VI).pdf: $(INPUT) Makefile $(QR)
|
||||
$(TEX) --jobname=$(TARGET_VI) "\def\ViFlag{}\input{$<}" && \
|
||||
$(TEX) --jobname=$(TARGET_VI) "\def\ViFlag{}\input{$<}"
|
||||
|
||||
$(QR): qrEvent_vi.txt
|
||||
./qrGen.py
|
||||
|
||||
clean:
|
||||
rm -f $(DOC).{pdf,out,aux,log} $(QR)
|
||||
rm -f *.{pdf,out,aux,log,bbl,blg}
|
||||
Reference in New Issue
Block a user