diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-06-06 14:04:32 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-06-11 16:27:05 -0400 |
commit | ad80c4a3220b5348f904f909ed572c364d50f867 (patch) | |
tree | 3c268b5ec197bd761b3628f40ca9f069ab3b41cf /tools/.gitignore | |
parent | 4a36be9bdb42157401618681c9ac28e3824c120e (diff) |
kbuild, tools: generate wrapper C sources automatically by Makefile
There are many source files shared between U-boot image and tools.
Instead of adding a lot of dummy wrapper files that just include
the corresponding file in lib/ or common/ directory,
Makefile should automatically generate them.
The original inspiration for this came from
scripts/Makefile.asm-generic of Linux Kernel.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Simon Glass <sjg@chromium.org>
Tested-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/.gitignore')
-rw-r--r-- | tools/.gitignore | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/.gitignore b/tools/.gitignore index 725db906e8..0eb9068dc7 100644 --- a/tools/.gitignore +++ b/tools/.gitignore @@ -21,3 +21,6 @@ /easylogo/easylogo /gdb/gdbcont /gdb/gdbsend + +/lib/ +/common/ |