mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
30 lines
373 B
Makefile
30 lines
373 B
Makefile
|
|
LIB= fdt
|
||
|
|
|
||
|
|
INTERNALLIB=
|
||
|
|
|
||
|
|
LIBFDTSRCDIR= ${SRCTOP}/sys/contrib/libfdt
|
||
|
|
.PATH: ${LIBFDTSRCDIR}
|
||
|
|
|
||
|
|
SRCS= \
|
||
|
|
fdt.c \
|
||
|
|
fdt_addresses.c \
|
||
|
|
fdt_empty_tree.c \
|
||
|
|
fdt_overlay.c \
|
||
|
|
fdt_ro.c \
|
||
|
|
fdt_rw.c \
|
||
|
|
fdt_strerror.c \
|
||
|
|
fdt_sw.c \
|
||
|
|
fdt_wip.c
|
||
|
|
|
||
|
|
INCS= \
|
||
|
|
fdt.h \
|
||
|
|
libfdt.h \
|
||
|
|
ibfdt_env.h
|
||
|
|
|
||
|
|
CFLAGS+= -I${LIBFDTSRCDIR}
|
||
|
|
WARNS?= 2
|
||
|
|
|
||
|
|
MAN=
|
||
|
|
|
||
|
|
.include <bsd.lib.mk>
|