diff options
author | Stefan Roese <sr@denx.de> | 2007-03-21 14:38:25 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-03-21 14:38:25 +0100 |
commit | fc1e45ce6e45d5d88a42f4245b2d7ee134270029 (patch) | |
tree | 830b3d19394f8af0d796a0d60dc07a03b6012f85 /board/amcc/acadia/Makefile | |
parent | 8423e5e31a7235d05a482627315fb11d49c17bd7 (diff) | |
parent | 16c0cc1c82081a493ab87c51980b28336ce1bce8 (diff) | |
download | u-boot-imx-fc1e45ce6e45d5d88a42f4245b2d7ee134270029.zip u-boot-imx-fc1e45ce6e45d5d88a42f4245b2d7ee134270029.tar.gz u-boot-imx-fc1e45ce6e45d5d88a42f4245b2d7ee134270029.tar.bz2 |
Merge with /home/stefan/git/u-boot/acadia
Diffstat (limited to 'board/amcc/acadia/Makefile')
-rw-r--r-- | board/amcc/acadia/Makefile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/board/amcc/acadia/Makefile b/board/amcc/acadia/Makefile new file mode 100644 index 0000000..183f694 --- /dev/null +++ b/board/amcc/acadia/Makefile @@ -0,0 +1,47 @@ +# +# (C) Copyright 2007 +# 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 cpr.o memory.o +SOBJS = + +$(LIB): $(OBJS) $(SOBJS) + $(AR) crv $@ $(OBJS) $(SOBJS) + +clean: + rm -f $(SOBJS) $(OBJS) + +distclean: clean + rm -f $(LIB) core *.bak .depend + +######################################################################### + +.depend: Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c) + $(CC) -M $(CFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@ + +sinclude .depend + +######################################################################### |