forgot to commit from work
This commit is contained in:
parent
268b18292b
commit
7febe93992
@ -18,3 +18,7 @@ doc: $(DIA)
|
||||
%.png:%.dia
|
||||
dia -t png $<
|
||||
|
||||
|
||||
|
||||
copy:
|
||||
echo $@
|
||||
|
24
submission_thesis/CH2_FMEA/Makefile
Normal file
24
submission_thesis/CH2_FMEA/Makefile
Normal file
@ -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 $@
|
24
submission_thesis/CH3_FMEA_criticism/Makefile
Normal file
24
submission_thesis/CH3_FMEA_criticism/Makefile
Normal file
@ -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 $@
|
BIN
submission_thesis/CH5_Examples/ftcontext.dia
Normal file
BIN
submission_thesis/CH5_Examples/ftcontext.dia
Normal file
Binary file not shown.
24
submission_thesis/CH6_Evaluation/Makefile
Normal file
24
submission_thesis/CH6_Evaluation/Makefile
Normal file
@ -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 $@
|
24
submission_thesis/CH7_Conculsion/Makefile
Normal file
24
submission_thesis/CH7_Conculsion/Makefile
Normal file
@ -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 $@
|
24
submission_thesis/CH8_finish_appendixes/Makefile
Normal file
24
submission_thesis/CH8_finish_appendixes/Makefile
Normal file
@ -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 $@
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user