mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-22 17:22:21 -05:00
15 lines
188 B
Makefile
15 lines
188 B
Makefile
|
|
||
|
.PHONY: default clean
|
||
|
|
||
|
self := mufasa_intro
|
||
|
|
||
|
default: createreport
|
||
|
|
||
|
clean:
|
||
|
rm -f *.{pdf,log, aux}
|
||
|
$(MAKE) -C Pics/ clean
|
||
|
|
||
|
createreport:
|
||
|
$(MAKE) -C Pics/
|
||
|
texi2pdf $(self).tex --silent
|