aboutsummaryrefslogtreecommitdiff
path: root/indev/psn00bdbg-mk2/testutil/makefile-linux
diff options
context:
space:
mode:
authorlameguy64 <lameguy64@github.com>2024-05-04 18:55:05 +0800
committerlameguy64 <lameguy64@github.com>2024-05-04 18:55:05 +0800
commit702bb601fb5712e2ae962a34b89204c646fe98f5 (patch)
tree765f400d1535d37c5ff4df61d01229a7dc7d8207 /indev/psn00bdbg-mk2/testutil/makefile-linux
parent00abe5963fbead092f91935b90390aa5a9111c43 (diff)
downloadpsn00bsdk-702bb601fb5712e2ae962a34b89204c646fe98f5.tar.gz
Included PSn00bDBG-mk2 monitor and test utility
Diffstat (limited to 'indev/psn00bdbg-mk2/testutil/makefile-linux')
-rw-r--r--indev/psn00bdbg-mk2/testutil/makefile-linux11
1 files changed, 11 insertions, 0 deletions
diff --git a/indev/psn00bdbg-mk2/testutil/makefile-linux b/indev/psn00bdbg-mk2/testutil/makefile-linux
new file mode 100644
index 0000000..83611d1
--- /dev/null
+++ b/indev/psn00bdbg-mk2/testutil/makefile-linux
@@ -0,0 +1,11 @@
+OFILES = main.o exec.o prompt.o comms.o serial.o mips_disassembler.o
+
+CFLAGS = -g -O2
+
+CC = gcc
+
+all: $(OFILES)
+ $(CC) $(CFLAGS) $(OFILES) -o psdbtest
+
+%.o: %.c
+ $(CC) $(CFLAGS) -c $< -o $@