From f97fb332816bba5547be1be3f0c5e7be6d70df74 Mon Sep 17 00:00:00 2001 From: xyz Date: Wed, 19 Apr 2023 11:48:24 -0400 Subject: [PATCH] Updated Makefile for Python3 users. --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 704d719..acfa76f 100644 --- a/Makefile +++ b/Makefile @@ -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