2009-10-06 22:43:13 +00:00
|
|
|
|
2009-11-27 17:54:54 +00:00
|
|
|
.PHONY: default clean intro psbook html all
|
2009-11-27 17:46:53 +00:00
|
|
|
|
|
|
|
intro_ := mufasa_intro
|
|
|
|
psbook_ := mufasa_ps_handbook
|
2009-12-04 12:50:12 +00:00
|
|
|
book_ := mufasa_handbook
|
2009-10-06 22:43:13 +00:00
|
|
|
|
2009-12-04 12:50:12 +00:00
|
|
|
default: tex
|
2009-10-06 22:43:13 +00:00
|
|
|
|
|
|
|
clean:
|
2009-11-27 18:05:19 +00:00
|
|
|
rm -rvf $(intro_)
|
|
|
|
rm -rvf $(psbook_)
|
2009-12-04 12:50:12 +00:00
|
|
|
rm -rvf $(book_)
|
2009-11-27 17:46:53 +00:00
|
|
|
find -iname "$(intro_)*" | grep -v svn | grep -v tex | xargs rm -vf
|
|
|
|
find -iname "$(psbook_)*" | grep -v svn | grep -v tex | xargs rm -vf
|
2009-12-04 12:50:12 +00:00
|
|
|
find -iname "$(book_)*" | grep -v svn | grep -v tex | xargs rm -vf
|
2009-10-06 22:43:13 +00:00
|
|
|
$(MAKE) -C Pics/ clean
|
|
|
|
|
2009-12-04 12:50:12 +00:00
|
|
|
tex:
|
2009-10-06 22:43:13 +00:00
|
|
|
$(MAKE) -C Pics/
|
2009-11-27 17:46:53 +00:00
|
|
|
texi2pdf $(intro_).tex #--silent
|
|
|
|
texi2pdf $(psbook_).tex #--silent
|
2009-12-04 12:50:12 +00:00
|
|
|
texi2pdf $(book_).tex #--silent
|
|
|
|
|
2009-11-27 17:54:54 +00:00
|
|
|
|
|
|
|
html:
|
|
|
|
$(MAKE) -C Pics/
|
2009-11-29 00:15:09 +00:00
|
|
|
latex2html $(intro_).tex -local_icons -nofootnode
|
|
|
|
latex2html $(psbook_).tex -local_icons -nofootnode
|
2009-12-04 12:50:12 +00:00
|
|
|
latex2html $(book_).tex -local_icons -nofootnode
|