# # makefile for creating PDF from LaTeX source # # This Makefile needs attention as a pdf file can be produced locally and not moved to the level above. default : SACAMOS_Spacecraft_cable_MOD_development.pdf LATEX_FILES= \ Tex/bibliography.tex \ Tex/introduction.tex \ Tex/preamble.tex \ Tex/Twisted_pairs.tex \ Tex/Shielded_twisted_pairs.tex \ Tex/spacewire.tex \ Tex/kley.tex SACAMOS_Spacecraft_cable_MOD_development.pdf: SACAMOS_Spacecraft_cable_MOD_development.tex $(LATEX_FILES) TEXINPUTS=".:${TOP_LEVEL_DIRECTORY}/COMMON_LATEX_FILES:" pdflatex -interaction=nonstopmode SACAMOS_Spacecraft_cable_MOD_development.tex TEXINPUTS=".:${TOP_LEVEL_DIRECTORY}/COMMON_LATEX_FILES:" pdflatex -interaction=nonstopmode SACAMOS_Spacecraft_cable_MOD_development.tex TEXINPUTS=".:${TOP_LEVEL_DIRECTORY}/COMMON_LATEX_FILES:" pdflatex -interaction=nonstopmode SACAMOS_Spacecraft_cable_MOD_development.tex help: @echo "make : make SACAMOS_Spacecraft_cable_MOD_development.pdf" @echo "make clean : clean LaTeX files" @echo "make clean_all : clean LaTeX files and image files" clean: rm -f *.aux *.lof *.log *.out *.toc *.pdf clean_all: rm -f *.aux *.lof *.log *.out *.toc *.pdf Imgs/*eps-converted-to.pdf