mirror of https://github.com/wolfSSL/wolfBoot.git
19 lines
287 B
Makefile
19 lines
287 B
Makefile
-include ../../.config
|
|
-include ../../tools/config.mk
|
|
-include ../../options.mk
|
|
|
|
CC=gcc
|
|
CFLAGS=-Wall -g -ggdb
|
|
CFLAGS+=-I../../include -DMMU -DPRINTF_ENABLED
|
|
EXE=fdt-parser
|
|
|
|
LIBS=
|
|
|
|
all: $(EXE)
|
|
|
|
$(EXE):
|
|
$(CC) -o $@ $(CFLAGS) $(LIBS) fdt-parser.c ../../src/fdt.c
|
|
|
|
clean:
|
|
rm -f *.o $(EXE)
|