Minor change to bootstrap/Makefile to simplify relative path to ../pilex.py
authorNick Downing <nick@ndcode.org>
Fri, 18 Jan 2019 01:59:29 +0000 (12:59 +1100)
committerNick Downing <nick@ndcode.org>
Fri, 18 Jan 2019 01:59:29 +0000 (12:59 +1100)
bootstrap/Makefile

index 16395c1..df720b4 100644 (file)
@@ -2,7 +2,7 @@ all: lex_yy.py y_tab.py
 
 lex_yy.py: scan.l skel_lex_yy.py
        ../../bootstrap_flex.git/src/flex -o /dev/null $< 2>$<.xml
-       ../../pilex.git/pilex.py --python --skel skel_lex_yy.py $<.xml
+       ../pilex.py --python --skel skel_lex_yy.py $<.xml
 
 y_tab.py: parse.y skel_y_tab.py
        ../../bootstrap_bison.git/src/bison -o /dev/null $< 2>$<.xml