Merge pull request 'add alternate command pdftex if pdflatex isn't found' (#12) from update_makefile into master

Reviewed-on: #12
This commit is contained in:
Chris Cromer 2021-06-27 17:26:24 -04:00
commit b908dea533
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