1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-08-13 16:53:59 -04:00
Simba/Doc/Makefile
2009-11-27 18:05:19 +00:00

26 lines
499 B
Makefile

.PHONY: default clean intro psbook html all
intro_ := mufasa_intro
psbook_ := mufasa_ps_handbook
default: intro
clean:
rm -rvf $(intro_)
rm -rvf $(psbook_)
find -iname "$(intro_)*" | grep -v svn | grep -v tex | xargs rm -vf
find -iname "$(psbook_)*" | grep -v svn | grep -v tex | xargs rm -vf
$(MAKE) -C Pics/ clean
intro:
$(MAKE) -C Pics/
texi2pdf $(intro_).tex #--silent
texi2pdf $(psbook_).tex #--silent
html:
$(MAKE) -C Pics/
latex2html $(intro_).tex
latex2html $(psbook_).tex