diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2013-10-21 11:53:41 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-11-01 11:42:13 -0400 |
commit | 3bddafaab42af50f2a6ae080c425e157906d9387 (patch) | |
tree | 615fafa513a9ad2785760a69b54309e9862f9b95 /board/avnet/fx12mm | |
parent | bcfe8fdf321e5e6d9931502c903348fe81252dd0 (diff) | |
download | u-boot-imx-3bddafaab42af50f2a6ae080c425e157906d9387.zip u-boot-imx-3bddafaab42af50f2a6ae080c425e157906d9387.tar.gz u-boot-imx-3bddafaab42af50f2a6ae080c425e157906d9387.tar.bz2 |
Makefile: convert makefiles to Kbuild style and delete grep switch
We have converted all makefiles needed to build $(LIBS).
Until this commit we used to grep switch so that U-Boot style
and Kbuild style makefiles coexist.
But we do not need any more.
Goint forward, use always Kbuild style Makefile when adding
a new Makefile
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'board/avnet/fx12mm')
-rw-r--r-- | board/avnet/fx12mm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/avnet/fx12mm/Makefile b/board/avnet/fx12mm/Makefile index 2dd48b6..37fb02f 100644 --- a/board/avnet/fx12mm/Makefile +++ b/board/avnet/fx12mm/Makefile @@ -6,6 +6,6 @@ # SPDX-License-Identifier: GPL-2.0+ # -COBJS += $(BOARD).o +obj-y += fx12mm.o include $(SRCTREE)/board/xilinx/ppc405-generic/Makefile |