Makefile 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. #
  2. # (C) Copyright 2000-2006
  3. # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. #
  5. # See file CREDITS for list of people who contributed to this
  6. # project.
  7. #
  8. # This program is free software; you can redistribute it and/or
  9. # modify it under the terms of the GNU General Public License as
  10. # published by the Free Software Foundation; either version 2 of
  11. # the License, or (at your option) any later version.
  12. #
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. # GNU General Public License for more details.
  17. #
  18. # You should have received a copy of the GNU General Public License
  19. # along with this program; if not, write to the Free Software
  20. # Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. # MA 02111-1307 USA
  22. #
  23. include $(TOPDIR)/config.mk
  24. LIB = $(obj)lib$(CPU).a
  25. START := resetvec.o
  26. START += start.o
  27. SOBJS := cache.o
  28. SOBJS += dcr.o
  29. SOBJS += kgdb.o
  30. COBJS := 40x_spd_sdram.o
  31. COBJS += 44x_spd_ddr.o
  32. COBJS += 44x_spd_ddr2.o
  33. ifdef CONFIG_PPC4xx_DDR_AUTOCALIBRATION
  34. COBJS += 4xx_ibm_ddr2_autocalib.o
  35. endif
  36. COBJS += 4xx_pci.o
  37. COBJS += 4xx_pcie.o
  38. COBJS += bedbug_405.o
  39. COBJS += commproc.o
  40. COBJS += cpu.o
  41. COBJS += cpu_init.o
  42. COBJS += denali_data_eye.o
  43. COBJS += denali_spd_ddr2.o
  44. COBJS += ecc.o
  45. COBJS += fdt.o
  46. COBJS += i2c.o
  47. COBJS += interrupts.o
  48. COBJS += iop480_uart.o
  49. COBJS += ndfc.o
  50. COBJS += sdram.o
  51. COBJS += speed.o
  52. COBJS += tlb.o
  53. COBJS += traps.o
  54. COBJS += usb.o
  55. COBJS += usb_ohci.o
  56. COBJS += usbdev.o
  57. ifndef CONFIG_XILINX_440
  58. COBJS += 4xx_uart.o
  59. COBJS += gpio.o
  60. COBJS += miiphy.o
  61. COBJS += uic.o
  62. else
  63. COBJS += xilinx_irq.o
  64. endif
  65. SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
  66. OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
  67. START := $(addprefix $(obj),$(START))
  68. all: $(obj).depend $(START) $(LIB)
  69. $(LIB): $(OBJS)
  70. $(AR) $(ARFLAGS) $@ $(OBJS)
  71. #########################################################################
  72. # defines $(obj).depend target
  73. include $(SRCTREE)/rules.mk
  74. sinclude $(obj).depend
  75. #########################################################################