diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-05-14 16:14:35 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-05-14 16:14:35 +0200 |
commit | dfbc93b69734af4ab3496bfae6ff6e62360a7522 (patch) | |
tree | 1b411f54c6872bdca44db0d88252074b23130857 /dts/makefile | |
parent | db8a968971df853c2f20b5ba0aa877cd89026ea5 (diff) |
fix dts w/ led
Diffstat (limited to 'dts/makefile')
-rw-r--r-- | dts/makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/dts/makefile b/dts/makefile index a556a5f..5f0fe9c 100644 --- a/dts/makefile +++ b/dts/makefile @@ -10,11 +10,14 @@ CPPFLAGS += -x assembler-with-cpp all: am335x-boneblack-uboot.dtb # all: am335x-boneblack-uboot-univ.dtb +# odering is important: +%.dts.pre: %.dts + $(CPP) $(CPPFLAGS) $< $@ %.dts.pre: src/%.dts $(CPP) $(CPPFLAGS) $< $@ %.dtb: %.dts.pre $(DTC) $(DTCFLAGS) -o $@ $< -%.dtb: %.dts - $(DTC) $(DTCFLAGS) -o $@ $< +# %.dtb: %.dts +# $(DTC) $(DTCFLAGS) -o $@ $< |