summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Andrew Waterman <waterman@cs.berkeley.edu>2015-05-09 16:41:20 -0700
committerGravatar Andrew Waterman <waterman@cs.berkeley.edu>2015-05-09 16:41:20 -0700
commitfc8ac29790a09f6b5ab6ac1c0ceb27eaecd68b8e (patch)
treefc411af26f7a74daa7615be205c809f7443f3f03 /Makefile
parent80529256d64bf70e1cf2279d7a896dc5e338aa4d (diff)
Update to privileged architecture version 1.7
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 54e9999..3cacc0a 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ XCC_H := ../riscv-gnu-toolchain/gcc/gcc/config/riscv/riscv-opc.h
ALL_OPCODES := opcodes opcodes-pseudo opcodes-rvc opcodes-hwacha opcodes-hwacha-pseudo opcodes-hwacha-ut opcodes-custom
-install: $(ISASIM_H) $(PK_H) $(FESVR_H) $(ENV_H) $(GAS_H) $(XCC_H) inst.chisel instr-table.tex
+install: $(ISASIM_H) $(PK_H) $(FESVR_H) $(ENV_H) $(GAS_H) $(XCC_H) inst.chisel instr-table.tex priv-instr-table.tex
$(ISASIM_H) $(PK_H) $(FESVR_H) $(ENV_H): $(ALL_OPCODES) parse-opcodes encoding.h
cp encoding.h $@
@@ -30,4 +30,7 @@ inst.chisel: $(ALL_OPCODES) parse-opcodes
instr-table.tex: $(ALL_OPCODES) parse-opcodes
cat opcodes opcodes-pseudo | ./parse-opcodes -tex > $@
+priv-instr-table.tex: $(ALL_OPCODES) parse-opcodes
+ cat opcodes opcodes-pseudo | ./parse-opcodes -privtex > $@
+
.PHONY : install