Commit eed073315b6447eceadf7468a4c2b757442c7c6f

Authored by Peter Tyser
Committed by Wolfgang Denk
1 parent c017017539
Exists in master and in 55 other branches 8qm-imx_v2020.04_5.4.70_2.3.0, emb_lf_v2022.04, emb_lf_v2023.04, imx_v2015.04_4.1.15_1.0.0_ga, pitx_8mp_lf_v2020.04, smarc-8m-android-10.0.0_2.6.0, smarc-8m-android-11.0.0_2.0.0, smarc-8mp-android-11.0.0_2.0.0, smarc-emmc-imx_v2014.04_3.10.53_1.1.0_ga, smarc-emmc-imx_v2014.04_3.14.28_1.0.0_ga, smarc-imx-l5.0.0_1.0.0-ga, smarc-imx6_v2018.03_4.14.98_2.0.0_ga, smarc-imx7_v2017.03_4.9.11_1.0.0_ga, smarc-imx7_v2018.03_4.14.98_2.0.0_ga, smarc-imx_v2014.04_3.14.28_1.0.0_ga, smarc-imx_v2015.04_4.1.15_1.0.0_ga, smarc-imx_v2017.03_4.9.11_1.0.0_ga, smarc-imx_v2017.03_4.9.88_2.0.0_ga, smarc-imx_v2017.03_o8.1.0_1.3.0_8m, smarc-imx_v2018.03_4.14.78_1.0.0_ga, smarc-m6.0.1_2.1.0-ga, smarc-n7.1.2_2.0.0-ga, smarc-rel_imx_4.1.15_2.0.0_ga, smarc_8m-imx_v2018.03_4.14.98_2.0.0_ga, smarc_8m-imx_v2019.04_4.19.35_1.1.0, smarc_8m_00d0-imx_v2018.03_4.14.98_2.0.0_ga, smarc_8mm-imx_v2018.03_4.14.98_2.0.0_ga, smarc_8mm-imx_v2019.04_4.19.35_1.1.0, smarc_8mm-imx_v2020.04_5.4.24_2.1.0, smarc_8mp_lf_v2020.04, smarc_8mq-imx_v2020.04_5.4.24_2.1.0, smarc_8mq_lf_v2020.04, ti-u-boot-2015.07, u-boot-2013.01.y, v2013.10, v2013.10-smarct33, v2013.10-smartmen, v2014.01, v2014.04, v2014.04-smarct33, v2014.04-smarct33-emmc, v2014.04-smartmen, v2014.07, v2014.07-smarct33, v2014.07-smartmen, v2015.07-smarct33, v2015.07-smarct33-emmc, v2015.07-smarct4x, v2016.05-dlt, v2016.05-smarct3x, v2016.05-smarct3x-emmc, v2016.05-smarct4x, v2017.01-smarct3x, v2017.01-smarct3x-emmc, v2017.01-smarct4x

tools/Makefile: Dynamically generate libfdt object dependencies

Add the libfdt files to the SRCS variable so that they have their
dependencies automatically generated

Signed-off-by: Peter Tyser <ptyser@xes-inc.com>

Showing 1 changed file with 6 additions and 7 deletions Side-by-side Diff

... ... @@ -22,7 +22,6 @@
22 22 #
23 23  
24 24 TOOLSUBDIRS =
25   -LIBFDT_DIR = $(SRCTREE)/libfdt/
26 25  
27 26 #
28 27 # Mac OS X / Darwin's C preprocessor is Apple specific. It
... ... @@ -128,6 +127,7 @@
128 127  
129 128 # now $(obj) is defined
130 129 SRCS := $(addprefix $(obj),$(OBJ_LINKS-y:.o=.c)) $(OBJ_FILES-y:.o=.c)
  130 +SRCS += $(addprefix $(SRCTREE)/libfdt/,$(LIBFDT_OBJ_FILES-y:.o=.c))
131 131 BINS := $(addprefix $(obj),$(BIN_FILES-y))
132 132 LIBFDT_OBJS := $(addprefix $(obj),$(LIBFDT_OBJ_FILES-y))
133 133  
134 134  
135 135  
136 136  
137 137  
... ... @@ -224,20 +224,19 @@
224 224 $(obj)mpc86x_clk.o: $(src)mpc86x_clk.c
225 225 $(CC) -g $(CFLAGS) -c -o $@ $<
226 226  
227   -$(obj)fdt.o: $(LIBFDT_DIR)fdt.c $(SRCTREE)/libfdt/libfdt_internal.h
  227 +$(obj)fdt.o:
228 228 $(CC) -g $(FIT_CFLAGS) -c -o $@ $<
229 229  
230   -$(obj)fdt_ro.o: $(LIBFDT_DIR)fdt_ro.c $(SRCTREE)/libfdt/libfdt_internal.h
  230 +$(obj)fdt_ro.o:
231 231 $(CC) -g $(FIT_CFLAGS) -c -o $@ $<
232 232  
233   -$(obj)fdt_rw.o: $(LIBFDT_DIR)fdt_rw.c $(SRCTREE)/libfdt/libfdt_internal.h
  233 +$(obj)fdt_rw.o:
234 234 $(CC) -g $(FIT_CFLAGS) -c -o $@ $<
235 235  
236   -$(obj)fdt_strerror.o: $(LIBFDT_DIR)fdt_strerror.c \
237   - $(SRCTREE)/libfdt/libfdt_internal.h
  236 +$(obj)fdt_strerror.o:
238 237 $(CC) -g $(FIT_CFLAGS) -c -o $@ $<
239 238  
240   -$(obj)fdt_wip.o: $(LIBFDT_DIR)fdt_wip.c $(SRCTREE)/libfdt/libfdt_internal.h
  239 +$(obj)fdt_wip.o:
241 240 $(CC) -g $(FIT_CFLAGS) -c -o $@ $<
242 241  
243 242 subdirs: