# # Makefile to latex document, uncompress .ps files etc... # original version : Mark Ito # modified: # # use for hadron05 paper - Elton Smith 9/30/03 # html output de-activated for now # halld_safety - Elton Smith 10/16/06 # cc_geometry - Elton Smith 10/16/06 # bcal_specs - Elton Smith 04/02/07 # halld_specs - Elton Smith 08/27/07 # feldman_cousins - Elton Smith 09/17/07 # feldman_cousins systematics - Elton Smith 08/05/08 # cdc_segments - Elton Smith 09/31/08 # sipm_cooling - Elton Smith 09/31/08 # b1pi_studies - Elton Smith 02/24/10 # b1_pi studies - Elton Smith 03/18/10 # gen_eta studies - Elton Smith 04/26/10 # short_currents - Elton Smith 06/22/10 # short_response - Elton Smith 09/24/10 # short_cover - Elton Smith 09/24/10 -- use pdflatex # solenoid_replacement - Elton Smith 10/15/10 -- use pdflatex # bcal_prod_guides - Elton Smith 06/08/11 -- use pdflatex # smith_plenary_Monday_menu2013 - Elton Smith 10/18/13 -- use pdflatex # # TEX_FILES_0 = smith_plenary_Monday_menu2013 TEX_FILES = $(addsuffix .tex,$(TEX_FILES_0)) # add .tex suffix PS_FILES_0 = PS_FILES = $(addsuffix .ps,$(PS_FILES_0)) # add .ps suffix EPS_FILES_0 = EPS_FILES = $(addsuffix .eps,$(EPS_FILES_0)) # add .eps suffix PDF_FILES_0 = plot_scalars_c1 BESIII_PRL106 h13mod h40513 Bookwalter_1108_6112v1_5 \ t_0p1_1p0_zemach_42waves_tdep_30a_6w_nobgr2mp_1_6_compass_prl \ t_0p1_1p0_zemach_42waves_tdep_30a_6w_nobgr2mp_6_compass_prl PDF_FILES = $(addsuffix .pdf,$(PDF_FILES_0)) # add .pdf suffix C_FILES_0 = C_FILES = $(addsuffix .C,$(C_FILES_0)) # add .C suffix all : smith_plenary_Monday_menu2013.pdf smith_plenary_Monday_menu2013.pdf : $(TEX_FILES) Makefile smith_plenary_Monday_menu2013.bbl $(PS_FILES) \ $(EPS_FILES) # make the pdf file pdflatex smith_plenary_Monday_menu2013.tex pdflatex smith_plenary_Monday_menu2013.tex smith_plenary_Monday_menu2013.bbl : smith_plenary_Monday_menu2013.bib $(TEX_FILES) $(PS_FILES) $(EPS_FILES) pdflatex smith_plenary_Monday_menu2013 bibtex smith_plenary_Monday_menu2013 tar : $(TEX_FILES) $(PS_FILES) $(EPS_FILES) # tar files; will remove old tar files rm -f smith_plenary_Monday_menu2013.tar rm -f smith_plenary_Monday_menu2013.tar.gz rm -rf smith_plenary_Monday_menu2013 mkdir smith_plenary_Monday_menu2013 # cp smith_plenary_Monday_menu2013.ps smith_plenary_Monday_menu2013 cp smith_plenary_Monday_menu2013.bib smith_plenary_Monday_menu2013 cp $(TEX_FILES) smith_plenary_Monday_menu2013 # cp $(EPS_FILES) smith_plenary_Monday_menu2013 # cp $(PS_FILES) smith_plenary_Monday_menu2013 cp $(PDF_FILES) smith_plenary_Monday_menu2013 # cp $(C_FILES) smith_plenary_Monday_menu2013 cp smith_plenary_Monday_menu2013.pdf smith_plenary_Monday_menu2013 # cp Makefile smith_plenary_Monday_menu2013 tar cvf smith_plenary_Monday_menu2013.tar smith_plenary_Monday_menu2013 gzip smith_plenary_Monday_menu2013.tar # rm -rf smith_plenary_Monday_menu2013 %.ps : %.dvi dvips -t letter -o $*.ps $* dvipdf $*.dvi $*.pdf %.dvi : %.tex latex $* latex $* %.pdf : %.tex pdflatex $* pdflatex $* %.ps : %.ps.gz gunzip -l $*.ps.gz rm -f $*.ps gunzip -c $*.ps.gz > $*.ps %.eps : %.eps.gz gunzip -l $*.eps.gz rm -f $*.eps gunzip -c $*.eps.gz > $*.eps # # % : %.dvi # 'rm' -rf $* # latex2html $* # produce html pages clean: rm -f smith_plenary_Monday_menu2013.dvi smith_plenary_Monday_menu2013.ps