diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2006-07-21 11:29:20 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-07-21 11:29:20 +0200 |
commit | 53dd6ce4f0208bb4d15311f6365f79f6c5b68673 (patch) | |
tree | 7305505ebea2a40fd33086ab4b0d2fef7280da20 /board/etin/kvme080/Makefile | |
parent | 8623c11e08fd6c2d856b7162004e24f33fd09be9 (diff) | |
download | u-boot-imx-53dd6ce4f0208bb4d15311f6365f79f6c5b68673.zip u-boot-imx-53dd6ce4f0208bb4d15311f6365f79f6c5b68673.tar.gz u-boot-imx-53dd6ce4f0208bb4d15311f6365f79f6c5b68673.tar.bz2 |
Add support for KVME080 board
Patch by Sangmoon Kim, 18 Aug 2005
Diffstat (limited to 'board/etin/kvme080/Makefile')
-rw-r--r-- | board/etin/kvme080/Makefile | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/board/etin/kvme080/Makefile b/board/etin/kvme080/Makefile new file mode 100644 index 0000000..303ccfa --- /dev/null +++ b/board/etin/kvme080/Makefile @@ -0,0 +1,40 @@ +# +# (C) Copyright 2000-2006 +# Wolfgang Denk, DENX Software Engineering, wd@denx.de. +# +# See file CREDITS for list of people who contributed to this +# project. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, +# MA 02111-1307 USA +# + +include $(TOPDIR)/config.mk + +LIB = lib$(BOARD).a + +OBJS = $(BOARD).o multiverse.o + +$(LIB): .depend $(OBJS) + $(AR) crv $@ $(OBJS) + +######################################################################### + +.depend: Makefile $(OBJS:.o=.c) + $(CC) -M $(CFLAGS) $(OBJS:.o=.c) > $@ + +sinclude .depend + +######################################################################### |