Makefile.libfdt revision 1.1
11.1Smacallan# Makefile.libfdt 21.1Smacallan# 31.1Smacallan# This is not a complete Makefile of itself. Instead, it is designed to 41.1Smacallan# be easily embeddable into other systems of Makefiles. 51.1Smacallan# 61.1SmacallanLIBFDT_soname = libfdt.$(SHAREDLIB_EXT).1 71.1SmacallanLIBFDT_INCLUDES = fdt.h libfdt.h libfdt_env.h 81.1SmacallanLIBFDT_VERSION = version.lds 91.1SmacallanLIBFDT_SRCS = fdt.c fdt_ro.c fdt_wip.c fdt_sw.c fdt_rw.c fdt_strerror.c fdt_empty_tree.c \ 101.1Smacallan fdt_addresses.c 111.1SmacallanLIBFDT_OBJS = $(LIBFDT_SRCS:%.c=%.o) 12