mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-11 11:55:02 -05:00
6a868620b5
git-svn-id: http://www.villavu.com/repositories/merlijn/mufasa@240 3f818213-9676-44b0-a9b4-5e4c4e03d09d
19 lines
387 B
Makefile
19 lines
387 B
Makefile
|
|
.PHONY: default clean intro psbook
|
|
|
|
intro_ := mufasa_intro
|
|
psbook_ := mufasa_ps_handbook
|
|
|
|
|
|
default: createreport
|
|
|
|
clean:
|
|
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
|
|
|
|
createreport:
|
|
$(MAKE) -C Pics/
|
|
texi2pdf $(intro_).tex #--silent
|
|
texi2pdf $(psbook_).tex #--silent
|