summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Lirzin <mthl@gnu.org>2018-06-02 15:41:59 +0200
committerMathieu Lirzin <mthl@gnu.org>2018-06-02 15:41:59 +0200
commitd70d0e2243f6bf54fb9bce3ce159d905c78cef26 (patch)
treebfd638fd2281eec743036b6ead28644136c4881c
parente75f6c01ae18e234936a289e19599fbb55de796f (diff)
downloadautomake-d70d0e2243f6bf54fb9bce3ce159d905c78cef26.tar.gz
Use the ‘perl’ found in the PATH environment variable
-rw-r--r--lib/Automake/Parser/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Automake/Parser/Makefile b/lib/Automake/Parser/Makefile
index fe9e4357f..b98bffcc5 100644
--- a/lib/Automake/Parser/Makefile
+++ b/lib/Automake/Parser/Makefile
@@ -2,11 +2,11 @@
all: execute
execute: Lexer.pm Tree.pm ParserTable.pm parser.pl
- ./Parser.pl
+ perl -I. parser.pl
unflatten -f -l 5 -c 6 -o ast1.gv ast.gv
dot -Tpng ast1.gv > ast.png
rm ast1.gv
-
+
build: buildGrammer buildTree
buildGrammer: automake.y
@@ -17,4 +17,4 @@ buildGrammer: automake.y
rm automake1.dot
buildTree: automake.dot Converter.pl
- ./Converter.pl \ No newline at end of file
+ perl -I. Converter.pl