diff --git a/submission_thesis/CH1_introduction/Makefile b/submission_thesis/CH1_introduction/Makefile index 7fbbd64..5743eec 100644 --- a/submission_thesis/CH1_introduction/Makefile +++ b/submission_thesis/CH1_introduction/Makefile @@ -18,3 +18,7 @@ doc: $(DIA) %.png:%.dia dia -t png $< + + +copy: + echo $@ diff --git a/submission_thesis/CH2_FMEA/Makefile b/submission_thesis/CH2_FMEA/Makefile new file mode 100644 index 0000000..5743eec --- /dev/null +++ b/submission_thesis/CH2_FMEA/Makefile @@ -0,0 +1,24 @@ + +# Makefile to create all graphics file etc +# +# Place all .dia files here as .png targets +# +DIA = + + +doc: $(DIA) + +# +#bib: +# +# bibtex HR230003_combined_o2_co_sensor +# + + +%.png:%.dia + dia -t png $< + + + +copy: + echo $@ diff --git a/submission_thesis/CH3_FMEA_criticism/Makefile b/submission_thesis/CH3_FMEA_criticism/Makefile new file mode 100644 index 0000000..5743eec --- /dev/null +++ b/submission_thesis/CH3_FMEA_criticism/Makefile @@ -0,0 +1,24 @@ + +# Makefile to create all graphics file etc +# +# Place all .dia files here as .png targets +# +DIA = + + +doc: $(DIA) + +# +#bib: +# +# bibtex HR230003_combined_o2_co_sensor +# + + +%.png:%.dia + dia -t png $< + + + +copy: + echo $@ diff --git a/submission_thesis/CH5_Examples/ftcontext.dia b/submission_thesis/CH5_Examples/ftcontext.dia new file mode 100644 index 0000000..6688251 Binary files /dev/null and b/submission_thesis/CH5_Examples/ftcontext.dia differ diff --git a/submission_thesis/CH6_Evaluation/Makefile b/submission_thesis/CH6_Evaluation/Makefile new file mode 100644 index 0000000..5743eec --- /dev/null +++ b/submission_thesis/CH6_Evaluation/Makefile @@ -0,0 +1,24 @@ + +# Makefile to create all graphics file etc +# +# Place all .dia files here as .png targets +# +DIA = + + +doc: $(DIA) + +# +#bib: +# +# bibtex HR230003_combined_o2_co_sensor +# + + +%.png:%.dia + dia -t png $< + + + +copy: + echo $@ diff --git a/submission_thesis/CH7_Conculsion/Makefile b/submission_thesis/CH7_Conculsion/Makefile new file mode 100644 index 0000000..5743eec --- /dev/null +++ b/submission_thesis/CH7_Conculsion/Makefile @@ -0,0 +1,24 @@ + +# Makefile to create all graphics file etc +# +# Place all .dia files here as .png targets +# +DIA = + + +doc: $(DIA) + +# +#bib: +# +# bibtex HR230003_combined_o2_co_sensor +# + + +%.png:%.dia + dia -t png $< + + + +copy: + echo $@ diff --git a/submission_thesis/CH8_finish_appendixes/Makefile b/submission_thesis/CH8_finish_appendixes/Makefile new file mode 100644 index 0000000..5743eec --- /dev/null +++ b/submission_thesis/CH8_finish_appendixes/Makefile @@ -0,0 +1,24 @@ + +# Makefile to create all graphics file etc +# +# Place all .dia files here as .png targets +# +DIA = + + +doc: $(DIA) + +# +#bib: +# +# bibtex HR230003_combined_o2_co_sensor +# + + +%.png:%.dia + dia -t png $< + + + +copy: + echo $@ diff --git a/submission_thesis/Makefile b/submission_thesis/Makefile index 362639d..fc20d46 100644 --- a/submission_thesis/Makefile +++ b/submission_thesis/Makefile @@ -1,41 +1,49 @@ -CHAPTERS = CH1_introduction CH2_FMEA CH3_FMEA_criticism CH4_FMMD CH5_Examples CH6_Evaluation CH7_Conculsion CH8_finish_appendixes +CHAPTERS = CH1 CH2 CH3 CH4 CH5 CH6 CH7 CH8 -all: ${CHAPTERS} +all: bib ${CHAPTERS} pdflatex thesis makeindex thesis.glo -s thesis.ist -t thesis.glg -o thesis.gls acroread thesis.pdf clean: - touch ${CHAPTERS} + #touch ${CHAPTERS} rm thesis.pdf + rm ${CHAPTERS} + bib: bibtex thesis -CH1_introduction: +CH1: cd $@; make copy -CH2_FMEA: +CH2: + ln -s CH2_FMEA/ CH2 cd $@; make copy -CH3_FMEA_criticism: +CH3: + ln -s CH3_FMEA_criticism/ CH3 cd $@; make copy -CH4_FMMD: +CH4: + ln -s CH4_FMMD/ CH4 cd $@; make copy -CH5_Examples: +CH5: + ln -s CH5_Examples/ CH5 cd $@; make copy -CH6_Evaluation: +CH6: + ln -s CH6_Evaluation/ CH6 cd $@; make copy -CH7_Conculsion: +CH7: + ln -s CH7_Conculsion/ CH7 cd $@; make copy - -CH8_finsh_appendixes: +CH8: + ln -s CH8_finish_appendixes/ CH8 cd $@; make copy