1# 2# This is not a complete Makefile of itself. Instead, it is designed to 3# be easily embeddable into other systems of Makefiles. 4# 5 6FDTDUMP_SRCS = \ 7 fdtdump.c \ 8 util.c 9 10FDTDUMP_OBJS = $(FDTDUMP_SRCS:%.c=%.o) 11 12 13FDTGET_SRCS = \ 14 fdtget.c \ 15 util.c 16 17FDTGET_OBJS = $(FDTGET_SRCS:%.c=%.o) 18 19 20FDTPUT_SRCS = \ 21 fdtput.c \ 22 util.c 23 24FDTPUT_OBJS = $(FDTPUT_SRCS:%.c=%.o) 25 26FDTOVERLAY_SRCS = \ 27 fdtoverlay.c \ 28 util.c 29 30FDTOVERLAY_OBJS = $(FDTOVERLAY_SRCS:%.c=%.o) 31