mirror of
https://github.com/antonblanchard/microwatt.git
synced 2026-01-15 07:53:57 +00:00
CFLAGS was defined but not used anywhere. This adds them to the compile line, and fixes the warnings (and errors!) that result. Signed-off-by: Joel Stanley <joel@jms.id.au>
13 lines
149 B
Makefile
13 lines
149 B
Makefile
CFLAGS = -O2 -g -Wall -std=c99
|
|
|
|
all: mw_debug
|
|
|
|
mw_debug: mw_debug.c
|
|
$(CC) -o $@ $^ $(CFLAGS) -lurjtag
|
|
|
|
clean:
|
|
rm -f mw_debug
|
|
distclean:
|
|
rm -f *~
|
|
|