1LIB= fdt 2 3INTERNALLIB= 4 5LIBFDTSRCDIR= ${SRCTOP}/sys/contrib/libfdt 6.PATH: ${LIBFDTSRCDIR} 7 8SRCS= \ 9 fdt.c \ 10 fdt_addresses.c \ 11 fdt_empty_tree.c \ 12 fdt_overlay.c \ 13 fdt_ro.c \ 14 fdt_rw.c \ 15 fdt_strerror.c \ 16 fdt_sw.c \ 17 fdt_wip.c 18 19INCS= \ 20 fdt.h \ 21 libfdt.h \ 22 ibfdt_env.h 23 24CFLAGS+= -I${LIBFDTSRCDIR} 25WARNS?= 2 26 27MAN= 28 29.include <bsd.lib.mk> 30