26 lines
573 B
Makefile
26 lines
573 B
Makefile
|
|
CHAPTERS = CH1_introduction CH2_FMEA CH3_FMEA_criticism CH4_FMMD CH5_Examples CH6_Evaluation CH7_Conculsion CH8_finish_appendixes
|
|
|
|
|
|
all: ${CHAPTERS}
|
|
pdflatex thesis
|
|
makeindex thesis.glo -s thesis.ist -t thesis.glg -o thesis.gls
|
|
acroread thesis.pdf
|
|
|
|
clean:
|
|
touch ${CHAPTERS}
|
|
rm thesis.pdf
|
|
bib:
|
|
bibtex thesis
|
|
|
|
chapters_sub_make:
|
|
cd CH1_introduction; make copy
|
|
cd CH2_FMEA; make copy
|
|
cd CH3_FMEA_criticism; make copy
|
|
cd CH4_FMMD; make copy
|
|
cd CH5_Examples; make copy
|
|
cd CH6_Evaluation; make copy
|
|
cd CH7_Conculsion; make copy
|
|
cd CH8_finsh_appendixes; make copy
|
|
|