aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Waterman <andrew@sifive.com>2022-04-05 17:53:54 -0700
committerAndrew Waterman <andrew@sifive.com>2022-04-05 17:53:54 -0700
commit75b28f235e807fb6803575f952ce56b81571fd2b (patch)
tree1cac54d7b83fb57829edb4d465fb3983779d0449
parentdd92012577ea920aa1d647931f5b2c3be2a6095a (diff)
downloadriscv-opcodes-75b28f235e807fb6803575f952ce56b81571fd2b.zip
riscv-opcodes-75b28f235e807fb6803575f952ce56b81571fd2b.tar.gz
riscv-opcodes-75b28f235e807fb6803575f952ce56b81571fd2b.tar.bz2
Fix makefile to avoid explicitly invoking python
The parse-opcodes script already contains `#!/usr/bin/env python3`
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8050d70..6354ecc 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,7 @@ encoding.out.h: $(ALL_OPCODES) parse_opcodes encoding.h
echo " */" >> $@
echo >> $@
cat encoding.h >> $@
- cat $(ALL_OPCODES) | python ./parse_opcodes -c >> $@
+ cat $(ALL_OPCODES) | ./parse_opcodes -c >> $@
inst.chisel: $(ALL_OPCODES) parse_opcodes
cat $(ALL_OPCODES) | ./parse_opcodes -chisel > $@