diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2006-05-03 17:52:20 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-05-03 17:52:20 +0200 |
commit | 0cf7d8aa0b24577e50b4bf6ab5da87caa09cfd69 (patch) | |
tree | f496e5137c76b74a06fc9002edd12d63bd575f7f /board/mpc8349ads/Makefile | |
parent | 610cf3676ee7376e0a55419626a30414a7b20db2 (diff) | |
parent | 8fe9bf61efa6cab617dc99dfc5413e47f2ef969f (diff) | |
download | u-boot-imx-0cf7d8aa0b24577e50b4bf6ab5da87caa09cfd69.zip u-boot-imx-0cf7d8aa0b24577e50b4bf6ab5da87caa09cfd69.tar.gz u-boot-imx-0cf7d8aa0b24577e50b4bf6ab5da87caa09cfd69.tar.bz2 |
Merge with git://git.kernel.org/pub/scm/boot/u-boot/galak/u-boot.git#mpc8349emds
Diffstat (limited to 'board/mpc8349ads/Makefile')
-rw-r--r-- | board/mpc8349ads/Makefile | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/board/mpc8349ads/Makefile b/board/mpc8349ads/Makefile deleted file mode 100644 index f865f9c..0000000 --- a/board/mpc8349ads/Makefile +++ /dev/null @@ -1,45 +0,0 @@ -# -# Copyright 2004 Freescale Semiconductor, Inc. -# -# 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 pci.o - -$(LIB): $(OBJS) $(SOBJS) - $(AR) crv $@ $(OBJS) - -clean: - rm -f $(SOBJS) $(OBJS) - -distclean: clean - rm -f $(LIB) core *.bak .depend - -######################################################################### - -.depend: Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c) - $(CC) -M $(CPPFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@ - --include .depend - -######################################################################### |