Skip to content

Commit

Permalink
Updated Makefile for Python3 users.
Browse files Browse the repository at this point in the history
  • Loading branch information
xyz committed Apr 19, 2023
1 parent 07b39b6 commit f97fb33
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit f97fb33

Please sign in to comment.