diff options
author | Wolfgang Denk <wd@denx.de> | 2009-09-07 23:12:46 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-09-07 23:12:46 +0200 |
commit | 3ea43ff7738582e2ed00a2ede532c702f7b1d737 (patch) | |
tree | 4377a47f1c3df1a1f8d899975756a02acc807486 /board/calao/sbc35_a9g20/Makefile | |
parent | 9f23ca42b3ba19b24e66fade572f2b86d929b6e8 (diff) | |
parent | 2d4072c06b5549444e4140231bba3d47d9b0bc53 (diff) | |
download | u-boot-imx-3ea43ff7738582e2ed00a2ede532c702f7b1d737.zip u-boot-imx-3ea43ff7738582e2ed00a2ede532c702f7b1d737.tar.gz u-boot-imx-3ea43ff7738582e2ed00a2ede532c702f7b1d737.tar.bz2 |
Merge branch 'master' of git://git.denx.de/u-boot-arm
Diffstat (limited to 'board/calao/sbc35_a9g20/Makefile')
-rw-r--r-- | board/calao/sbc35_a9g20/Makefile | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/board/calao/sbc35_a9g20/Makefile b/board/calao/sbc35_a9g20/Makefile new file mode 100644 index 0000000..8b4a911 --- /dev/null +++ b/board/calao/sbc35_a9g20/Makefile @@ -0,0 +1,55 @@ +# +# (C) Copyright 2003-2008 +# Wolfgang Denk, DENX Software Engineering, wd@denx.de. +# +# (C) Copyright 2008 +# Stelian Pop <stelian.pop@leadtechdesign.com> +# Lead Tech Design <www.leadtechdesign.com> +# +# 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 = $(obj)lib$(BOARD).a + +COBJS-y += sbc35_a9g20.o +COBJS-$(CONFIG_ATMEL_SPI) += spi.o + +SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c) +OBJS := $(addprefix $(obj),$(COBJS-y)) +SOBJS := $(addprefix $(obj),$(SOBJS)) + +$(LIB): $(obj).depend $(OBJS) $(SOBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS) + +clean: + rm -f $(SOBJS) $(OBJS) + +distclean: clean + rm -f $(LIB) core *.bak $(obj).depend + +######################################################################### + +# defines $(obj).depend target +include $(SRCTREE)/rules.mk + +sinclude $(obj).depend + +######################################################################### |