diff options
author | Andrew Waterman <andrew@sifive.com> | 2025-09-03 19:30:49 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-09-03 19:30:49 -0700 |
commit | 74c115829aba796fb1680557d2bf920dbcb918bc (patch) | |
tree | e2856b962231c22ca6421dff7d4767a07e1b283a | |
parent | ddba97b829331949904de0ab89e34cb0e63cbf29 (diff) | |
download | riscv-opcodes-master.zip riscv-opcodes-master.tar.gz riscv-opcodes-master.tar.bz2 |
The SVG generation in #364 broke this in a surprising way (though #364
really is not to blame). The addition of a file in the root directory
that began with `rv` caused the Make rule to glob that file, rather than
passing the string `rv*` through to `parse.py`.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ everything: @./parse.py $(PSEUDO_FLAG) -c -go -chisel -sverilog -rust -latex -spinalhdl $(EXTENSIONS) encoding.out.h: - @./parse.py -c $(PSEUDO_FLAG) rv* unratified/rv_* unratified/rv32* unratified/rv64* + @./parse.py -c $(PSEUDO_FLAG) $(EXTENSIONS) inst.chisel: @./parse.py -chisel $(PSEUDO_FLAG) $(EXTENSIONS) |