forgot to commit from work

This commit is contained in:
Robin P. Clark 2012-04-24 18:39:48 +01:00
parent 268b18292b
commit 7febe93992
8 changed files with 144 additions and 12 deletions

View File

@ -18,3 +18,7 @@ doc: $(DIA)
%.png:%.dia
dia -t png $<
copy:
echo $@

View 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 $@

View 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 $@

Binary file not shown.

View 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 $@

View 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 $@

View 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 $@

View File

@ -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