diff --git a/old_thesis/opamp_circuits_C_GARRETT/Makefile b/old_thesis/opamp_circuits_C_GARRETT/Makefile index 15139de..8b9deb0 100644 --- a/old_thesis/opamp_circuits_C_GARRETT/Makefile +++ b/old_thesis/opamp_circuits_C_GARRETT/Makefile @@ -7,12 +7,16 @@ PNG_DIA = circuit1_dag.png mvampcircuit.png pd.png invamp.png shared_component.p %.png:%.dia dia -t png $< - +all: bib + pdflatex opamps + pdflatex opamps pdf: $(PNG_DIA) pdflatex opamps - acroread opamps.pdf & +acro: + acroread opamps.pdf + acro bib: bibtex opamps diff --git a/related_papers_books/my_papers/FZD_paper4.pdf b/related_papers_books/my_papers/FZD_paper4.pdf new file mode 100644 index 0000000..cade7bd Binary files /dev/null and b/related_papers_books/my_papers/FZD_paper4.pdf differ diff --git a/related_papers_books/my_papers/SYSTEM_SAFETY_2011_BIRMINGHAM_submission.pdf b/related_papers_books/my_papers/SYSTEM_SAFETY_2011_BIRMINGHAM_submission.pdf new file mode 100644 index 0000000..ce88fe1 Binary files /dev/null and b/related_papers_books/my_papers/SYSTEM_SAFETY_2011_BIRMINGHAM_submission.pdf differ diff --git a/related_papers_books/my_papers/fmea_pres.pdf b/related_papers_books/my_papers/fmea_pres.pdf new file mode 100644 index 0000000..d3ba24d Binary files /dev/null and b/related_papers_books/my_papers/fmea_pres.pdf differ diff --git a/submission_thesis/Makefile b/submission_thesis/Makefile index 9a65b19..fb7ee7a 100644 --- a/submission_thesis/Makefile +++ b/submission_thesis/Makefile @@ -1,9 +1,34 @@ +CHAPTERS = CH1_introduction CH2_FMEA CH3_FMEA_criticism CH4_FMMD CH5_Examples CH6_Evaluation CH7_Conculsion + - -all: +all: ${CHAPTERS} pdflatex thesis acroread thesis.pdf bib: bibtex thesis + + +CH1_introduction: + cd $@; make copy + +CH2_FMEA: + cd $@; make copy + +CH3_FMEA_criticism: + cd $@; make copy + +CH4_FMMD: + cd $@; make copy + +CH5_Examples: + cd $@; make copy + +CH6_Evaluation: + cd $@; make copy + +CH7_Conculsion: + cd $@; make copy + +