quran

English translation of the Quran from the command line
git clone https://riazj.com/git/quran
Log | Files | Refs | README | LICENSE

commit 88d47b614f33b9b1200a8786e486088f302dd7e4
parent fb4670dc545edcde2f138d92bb9b95ac78800862
Author: Riaz <riaz@riazj.com>
Date:   Wed, 11 Jun 2025 15:30:14 -0700

Revert "Abbreviate the makefile"

This reverts commit fb4670dc545edcde2f138d92bb9b95ac78800862.
$_ always returns the location of make when used in a makefile.

Diffstat:
MMakefile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -2,9 +2,9 @@ PREFIX ?= /usr/local install: mkdir -p ${PREFIX}/bin - sed "s|/usr/local|${PREFIX}|" quran > "$_/quran" + sed "s|/usr/local|${PREFIX}|" quran > ${PREFIX}/bin/quran mkdir -p ${PREFIX}/share/quran - cp -f quran.txt surahs.txt "$_" + cp -f quran.txt surahs.txt ${PREFIX}/share/quran uninstall: rm -f ${PREFIX}/bin/quran