Makefile revision b95c5b557aadc2211867af804d39950d4c9c1444
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholesTARGET = CSP_CASL_Parser
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholesPS2PDF = ps2pdf -sPAPERSIZE=a4
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholesdefault: $(TARGET).dvi
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholesclean:
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes @find . -name '*~' -exec rm -vf {} ';'
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholesnuke: clean
0662ed52e814f8f08ef0e09956413a792584eddffuankg @find . -name '*.aux' -exec rm -vf {} ';'
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes @find . -name '*.dvi' -exec rm -vf {} ';'
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes @find . -name '*.ps' -exec rm -vf {} ';'
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes @find . -name '*.pdf' -exec rm -vf {} ';'
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes @find . -name '*.log' -exec rm -vf {} ';'
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes @find . -name '*.toc' -exec rm -vf {} ';'
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes @find . -name '*.fig.bak' -exec rm -vf {} ';'
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes
70953fb44a7140fe206c3a5f011e24209c8c5c6abnicholes$(TARGET).dvi: $(TARGET).tex
70953fb44a7140fe206c3a5f011e24209c8c5c6abnicholes latex $(TARGET).tex
16b55a35cff91315d261d1baa776138af465c4e4fuankg latex $(TARGET).tex
16b55a35cff91315d261d1baa776138af465c4e4fuankg
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes$(TARGET).ps: $(TARGET).dvi
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes dvips -o $(TARGET).ps $(TARGET).dvi
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes$(TARGET).2up.ps: $(TARGET).ps
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes psnup -m20 -d1 -2 $(TARGET).ps $(TARGET).2up.ps
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes$(TARGET).pdf: $(TARGET).ps
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes $(PS2PDF) $(TARGET).ps $(TARGET).pdf
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes$(TARGET).2up.pdf: $(TARGET).2up.ps
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes $(PS2PDF) $(TARGET).2up.ps $(TARGET).2up.pdf
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholesdvi: $(TARGET).dvi
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholesps: $(TARGET).ps
9558e9fdb620dd6f42ca93beac6c3ab734086706bnicholes
9558e9fdb620dd6f42ca93beac6c3ab734086706bnicholespdf: $(TARGET).pdf
9558e9fdb620dd6f42ca93beac6c3ab734086706bnicholes
9558e9fdb620dd6f42ca93beac6c3ab734086706bnicholes2up: $(TARGET).2up.ps $(TARGET).2up.pdf
9558e9fdb620dd6f42ca93beac6c3ab734086706bnicholes
9558e9fdb620dd6f42ca93beac6c3ab734086706bnicholesall: dvi ps pdf 2up
9558e9fdb620dd6f42ca93beac6c3ab734086706bnicholes
9558e9fdb620dd6f42ca93beac6c3ab734086706bnicholesxdvi: $(TARGET).dvi
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes xdvi $(TARGET).dvi &
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholesgv: $(TARGET).ps
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes gv $(TARGET).ps &
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholesacro: $(TARGET).pdf
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes acroread $(TARGET).pdf &
d5b12fe8ae917e654a33247fd4e59dc9e75170aebnicholes