]> git.ipfire.org Git - people/ms/u-boot.git/commit - Makefile
Makefile: restore support for board shortcut targets
authorMike Frysinger <vapier@gentoo.org>
Wed, 11 Aug 2010 22:52:36 +0000 (18:52 -0400)
committerWolfgang Denk <wd@denx.de>
Sun, 19 Sep 2010 17:29:48 +0000 (19:29 +0200)
commit727ebd9fd9c607b14d35726062a7ded7190691b5
tree5cc9a7c1c42de42e7787b9828696a4f66b4fb17f
parentea882baf9c17cd142c99e3ff640d3ab01daa5cec
Makefile: restore support for board shortcut targets

The helpful shortcut for doing a board config + make was dropped recently
as it conflicted with some new build code.  However, the reason for using
pattern targets originally was to avoid managing a duplicate list of
boards.  Since we now have one centralized place for a list of boards (the
new boards.cfg), we don't need a pattern target -- we can generate the
exact list of boards on the fly.  So do just that.

When cleaning things up, the top level gitignore file ignores all things
that end with ".depend", but the clean target only deletes files that are
named exactly ".depend".  Keep these in sync by having the clean target
punt all files that match the pattern that gitignore is using.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Acked-by: Detlev Zundel <dzu@denx.de>
Makefile