123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #
- # Copyright 2008 Extreme Engineering Solutions, Inc.
- # Copyright 2007 Freescale Semiconductor, Inc.
- # (C) Copyright 2001-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.
- #
- include $(TOPDIR)/config.mk
- LIB = $(obj)lib$(BOARD).a
- COBJS-y += $(BOARD).o
- COBJS-y += ddr.o
- COBJS-y += law.o
- COBJS-y += tlb.o
- SRCS := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
- OBJS := $(addprefix $(obj),$(COBJS-y))
- SOBJS := $(addprefix $(obj),$(SOBJS-y))
- $(LIB): $(obj).depend $(OBJS) $(SOBJS)
- $(AR) $(ARFLAGS) $@ $(OBJS)
- clean:
- rm -f $(OBJS) $(SOBJS)
- distclean: clean
- rm -f $(LIB) core *.bak .depend
- #########################################################################
- # defines $(obj).depend target
- include $(SRCTREE)/rules.mk
- sinclude $(obj).depend
- #########################################################################
|