diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2010-09-16 16:28:38 +0800 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2010-09-17 10:56:24 +0800 |
commit | 67bb65ad2f9028c365cbfc86eb363ebd63adeeaa (patch) | |
tree | e6a4fd0025a0b4621a6dcdc5dc29ae41b4a40597 /arch/arm/tools | |
parent | 93bd1526aa15328cd37c2624be22b801d6ca1d1c (diff) | |
download | barebox-67bb65ad2f9028c365cbfc86eb363ebd63adeeaa.tar.gz barebox-67bb65ad2f9028c365cbfc86eb363ebd63adeeaa.tar.xz |
arm: move mach-types.h to include/generated/
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'arch/arm/tools')
-rw-r--r-- | arch/arm/tools/Makefile | 2 | ||||
-rw-r--r-- | arch/arm/tools/gen-mach-types | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/tools/Makefile b/arch/arm/tools/Makefile index 5243a98906..635cb1865e 100644 --- a/arch/arm/tools/Makefile +++ b/arch/arm/tools/Makefile @@ -4,7 +4,7 @@ # Copyright (C) 2001 Russell King # -arch/arm/include/asm/mach-types.h: $(src)/gen-mach-types $(src)/mach-types +include/generated/mach-types.h: $(src)/gen-mach-types $(src)/mach-types @echo ' Generating $@' @mkdir -p $(dir $@) $(Q)$(AWK) -f $^ > $@ || { rm -f $@; /bin/false; } diff --git a/arch/arm/tools/gen-mach-types b/arch/arm/tools/gen-mach-types index ce319ef64b..04fef71d7b 100644 --- a/arch/arm/tools/gen-mach-types +++ b/arch/arm/tools/gen-mach-types @@ -1,6 +1,6 @@ #!/bin/awk # -# Awk script to generate include/asm-arm/mach-types.h +# Awk script to generate include/generated/mach-types.h # BEGIN { nr = 0 } /^#/ { next } |