You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
561 B
19 lines
561 B
# Makefile.libfdt |
|
# |
|
# This is not a complete Makefile of itself. Instead, it is designed to |
|
# be easily embeddable into other systems of Makefiles. |
|
# |
|
|
|
LIBFDT_OBJS_L = fdt.o fdt_ro.o fdt_wip.o fdt_sw.o fdt_rw.o fdt_strerror.o |
|
LIBFDT_OBJS = $(LIBFDT_OBJS_L:%=$(LIBFDT_PREFIX)%) |
|
|
|
LIBFDT_LIB_L = libfdt.a |
|
LIBFDT_LIB = $(LIBFDT_LIB_L:%=$(LIBFDT_PREFIX)%) |
|
|
|
LIBFDT_CLEANFILES_L = *~ *.o *.d *.a $(LIBFDT_LIB) \ |
|
*.i *.s a.out core |
|
LIBFDT_CLEANFILES = $(LIBFDT_CLEANFILES_L:%=$(LIBFDT_PREFIX)%) |
|
|
|
$(LIBFDT_LIB): $(LIBFDT_OBJS) |
|
|
|
LIBFDT_DEPFILES = $(LIBFDT_OBJS:%.o=%.d)
|
|
|