Merge pull request #399 from j-a-c-k-goes/master

Makefile python3
This commit is contained in:
Patricio Gonzalez Vivo 2023-04-20 11:04:17 -04:00 committed by GitHub
commit bff9800a14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -8,13 +8,13 @@ clean:
rm -rf book.*
all:
python2.7 src/parseBook.py -f tex -f pdf -f epub
python3 src/parseBook.py -f tex -f pdf -f epub
epub:
python2.7 src/parseBook.py -f epub
python3 src/parseBook.py -f epub
pdf:
python2.7 src/parseBook.py -f pdf
python3 src/parseBook.py -f pdf
tex:
python2.7 src/parseBook.py -f tex
python3 src/parseBook.py -f tex