diff options
author | Matthias Weisser <weisserm@arcor.de> | 2011-06-30 05:24:11 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-07-14 15:41:24 +0200 |
commit | f456445f29d22bb31ad29fdf1d6b2769decd37a2 (patch) | |
tree | ad99f5c8f457271cab2e24d6fca82a8f8503b8f4 /arch/arm | |
parent | 026ca6591b1365fefb83ae6dcade62eca8c837a0 (diff) | |
download | u-boot-imx-f456445f29d22bb31ad29fdf1d6b2769decd37a2.zip u-boot-imx-f456445f29d22bb31ad29fdf1d6b2769decd37a2.tar.gz u-boot-imx-f456445f29d22bb31ad29fdf1d6b2769decd37a2.tar.bz2 |
build: Add targets for auto gen of asm-offsets.h and use it in imx35
asm-offsets.h should be auto generated. This patch adds two rules to rules.mk
which makes this possible and removes the rules on imx35.
Signed-off-by: Matthias Weisser <weisserm@arcor.de>
Acked-by: Stefano Babic <sbabic@denx.de>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/cpu/arm1136/mx35/Makefile | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/arch/arm/cpu/arm1136/mx35/Makefile b/arch/arm/cpu/arm1136/mx35/Makefile index 20f36e3..284cdc5 100644 --- a/arch/arm/cpu/arm1136/mx35/Makefile +++ b/arch/arm/cpu/arm1136/mx35/Makefile @@ -50,14 +50,3 @@ include $(SRCTREE)/rules.mk sinclude $(obj).depend ######################################################################### - -$(TOPDIR)/include/asm/arch/asm-offsets.h: $(TOPDIR)/include/autoconf.mk.dep \ - ./asm-offsets.s - @echo Generating $@ - $(TOPDIR)/tools/scripts/make-asm-offsets ./asm-offsets.s $@ - -asm-offsets.s: $(TOPDIR)/include/autoconf.mk.dep \ - ./asm-offsets.c - $(CC) -DDO_DEPS_ONLY \ - $(CFLAGS) $(CFLAGS_$(BCURDIR)/$(@F)) $(CFLAGS_$(BCURDIR)) \ - -o $@ ./asm-offsets.c -c -S |