diff options
author | wdenk <wdenk> | 2004-09-29 11:02:56 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-09-29 11:02:56 +0000 |
commit | da93ed8147a000505ac7b7ed4e2fb50532596a3c (patch) | |
tree | f375a3f5d82d1f519f77d9446ccf147f2091548f /board/quantum/Makefile | |
parent | a5725fabc0c6378f583df6fc6491ec07eab154ab (diff) | |
download | u-boot-imx-da93ed8147a000505ac7b7ed4e2fb50532596a3c.zip u-boot-imx-da93ed8147a000505ac7b7ed4e2fb50532596a3c.tar.gz u-boot-imx-da93ed8147a000505ac7b7ed4e2fb50532596a3c.tar.bz2 |
* Patch by Shlomo Kut, 29 Mar 2004:
Add support for MKS Instruments "Quantum" board
* Fix build problem with Cogent boards;
avoid using <asm/byteorder.h> when using the host compiler
Diffstat (limited to 'board/quantum/Makefile')
-rw-r--r-- | board/quantum/Makefile | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/board/quantum/Makefile b/board/quantum/Makefile new file mode 100644 index 0000000..e50f5ff --- /dev/null +++ b/board/quantum/Makefile @@ -0,0 +1,41 @@ +# +# (C) Copyright 2000 +# 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 fpga.o + + +$(LIB): .depend $(OBJS) + $(AR) crv $@ $(OBJS) + +######################################################################### + +.depend: Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c) + $(CC) -M $(CFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@ + +sinclude .depend + +######################################################################### |