summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Andrew Waterman <waterman@s141.Millennium.Berkeley.EDU>2011-06-19 20:37:58 -0700
committerGravatar Andrew Waterman <waterman@s141.Millennium.Berkeley.EDU>2011-06-19 20:37:58 -0700
commit6285e3f41483c4e724cc0dcef2eb5239c34d03a8 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /Makefile
parentf1f72abca9f7511990c476d326c864c96a758732 (diff)
Renamed packages
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile22
1 files changed, 0 insertions, 22 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100755
index 9029847..0000000
--- a/Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
-ISASIM_H := ../riscv-isa-run/riscv/opcodes.h
-PK_H := ../pk/pk/riscv-opc.h
-XCC_H := ../xcc/src/include/opcode/mips-riscv-opc.h
-
-install: $(ISASIM_H) $(PK_H) $(XCC_H) inst.v instr-table.tex
-
-$(ISASIM_H): opcodes parse-opcodes
- ./parse-opcodes -isasim < $< > $@
-
-$(PK_H): opcodes parse-opcodes
- ./parse-opcodes -disasm < $< > $@
-
-$(XCC_H): opcodes parse-opcodes
- ./parse-opcodes -disasm < $< > $@
-
-inst.v: opcodes parse-opcodes
- ./parse-opcodes -verilog < $< > $@
-
-instr-table.tex: opcodes parse-opcodes
- ./parse-opcodes -tex < $< > $@
-
-.PHONY : install