From 15613161c28591ca1a40d019a1568f01d68d5743 Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Sat, 1 Nov 2003 13:20:44 -0500 Subject: Commit a command for use inside a simulated system for communicating with the simulator. This program is generally compiled as the name m5 and installed in /usr/local/bin This command uses opcodes that are invalid on a normal system, so don't expect it to do anything on a real system. --HG-- extra : convert_revision : fcbae99d4b0d38ff4a9950f1ab53923baa1f667a --- util/m5/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 util/m5/Makefile (limited to 'util/m5/Makefile') diff --git a/util/m5/Makefile b/util/m5/Makefile new file mode 100644 index 000000000..f77a6cac3 --- /dev/null +++ b/util/m5/Makefile @@ -0,0 +1,13 @@ +all: m5 + +m5: m5.o m5op.o + cc -o m5 m5.o m5op.o + +m5op.o: m5op.s + as -o m5op.o m5op.s + +m5.o: m5.c + cc -c -o m5.o m5.c + +clean: + @rm -f m5 *.o *~ -- cgit v1.2.3