add alternate command pdftex if pdflatex isn't found #12

Merged
cromer merged 1 commits from update_makefile into master 2021-06-27 17:26:25 -04:00
1 changed files with 3 additions and 0 deletions

View File

@ -15,6 +15,9 @@ informe:
ifneq (, $(shell which pdflatex))
make -C doc
mv doc/Informe.pdf Informe.pdf
else ifneq (, $(shell which pdftex))
make -C doc
mv doc/Informe.pdf Informe.pdf
endif
clean: cleanmyshellin