mirror of
https://github.com/antonblanchard/microwatt.git
synced 2026-01-14 15:36:19 +00:00
This works with both the sim socket and urjtag, and supports the new core functions, loading a file in memory etc... The code still needs a lot of cleanup and a help! Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
8 lines
94 B
Makefile
8 lines
94 B
Makefile
CFLAGS = -O2 -g -Wall -std=c99
|
|
|
|
all: mw_debug
|
|
|
|
mw_debug: mw_debug.c
|
|
$(CC) -o $@ $^ -lurjtag
|
|
|