diff options
author | Jon Loeliger <jdl@freescale.com> | 2006-08-09 15:32:16 -0500 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2006-08-09 15:32:16 -0500 |
commit | 40bc83559db5745681909fd7382ae509567e116d (patch) | |
tree | db2fb21c6ed3827ff9ff5d70fe5bc0189f2d22f3 /board/mpc8641hpcn/Makefile | |
parent | 8fc8bd2cc479b6cd188fdede4010e0e052970b8a (diff) | |
download | u-boot-imx-40bc83559db5745681909fd7382ae509567e116d.zip u-boot-imx-40bc83559db5745681909fd7382ae509567e116d.tar.gz u-boot-imx-40bc83559db5745681909fd7382ae509567e116d.tar.bz2 |
Removed MPC8641HPCN DTS source file from build.
It is no longer linked into U-Boot; its sources are
now located in the kernel tree.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'board/mpc8641hpcn/Makefile')
-rw-r--r-- | board/mpc8641hpcn/Makefile | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/board/mpc8641hpcn/Makefile b/board/mpc8641hpcn/Makefile index 0ebed87..f70f44b 100644 --- a/board/mpc8641hpcn/Makefile +++ b/board/mpc8641hpcn/Makefile @@ -25,27 +25,15 @@ include $(TOPDIR)/config.mk LIB = lib$(BOARD).a -OBJS := $(BOARD).o pixis.o sys_eeprom.o oftree.o +OBJS := $(BOARD).o pixis.o sys_eeprom.o SOBJS := init.o $(LIB): $(OBJS) $(SOBJS) $(AR) crv $@ $(OBJS) -ifndef DTC -DTC := dtc -endif - -%.dtb: %.dts - $(DTC) -f -V 0x10 -I dts -O dtb $< >$@ - -%.c: %.dtb - xxd -i $< \ - | sed -e "s/^unsigned char/const unsigned char/g" \ - | sed -e "s/^unsigned int/const unsigned int/g" > $@ - - clean: - rm -f $(OBJS) $(SOBJS) *.dtb oftree.c + rm -f $(OBJS) $(SOBJS) + .PHONY: distclean distclean: clean rm -f $(LIB) core *.bak .depend |