Makefile 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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. ifeq ($(ARCH),ppc)
  24. LOAD_ADDR = 0x40000
  25. endif
  26. ifeq ($(ARCH),i386)
  27. LOAD_ADDR = 0x40000
  28. endif
  29. ifeq ($(ARCH),arm)
  30. ifeq ($(BOARD),omap2420h4)
  31. LOAD_ADDR = 0x80300000
  32. else
  33. ifeq ($(CPU),omap3)
  34. LOAD_ADDR = 0x80300000
  35. else
  36. LOAD_ADDR = 0xc100000
  37. endif
  38. endif
  39. endif
  40. ifeq ($(ARCH),mips)
  41. LOAD_ADDR = 0x80200000 -T mips.lds
  42. endif
  43. ifeq ($(ARCH),nios)
  44. LOAD_ADDR = 0x00800000 -L $(gcclibdir)/m32 -T nios.lds
  45. endif
  46. ifeq ($(ARCH),nios2)
  47. LOAD_ADDR = 0x02000000 -L $(gcclibdir) -T nios2.lds
  48. endif
  49. ifeq ($(ARCH),m68k)
  50. LOAD_ADDR = 0x20000 -L $(clibdir)
  51. endif
  52. ifeq ($(ARCH),microblaze)
  53. LOAD_ADDR = 0x80F00000
  54. endif
  55. ifeq ($(ARCH),blackfin)
  56. LOAD_ADDR = 0x1000
  57. endif
  58. ifeq ($(ARCH),avr32)
  59. LOAD_ADDR = 0x00000000
  60. endif
  61. ifeq ($(ARCH),sh)
  62. LOAD_ADDR = 0x8C000000
  63. ifeq ($(CPU),sh2)
  64. BIG_ENDIAN=y
  65. endif
  66. endif
  67. ifeq ($(ARCH),sparc)
  68. LOAD_ADDR = 0x00000000 -L $(gcclibdir) -T sparc.lds
  69. endif
  70. include $(TOPDIR)/config.mk
  71. ELF = hello_world
  72. SREC = hello_world.srec
  73. BIN = hello_world.bin
  74. ifeq ($(CPU),mpc8xx)
  75. ELF += test_burst
  76. SREC += test_burst.srec
  77. BIN += test_burst.bin
  78. endif
  79. ifeq ($(ARCH),i386)
  80. ELF += 82559_eeprom
  81. SREC += 82559_eeprom.srec
  82. BIN += 82559_eeprom.bin
  83. endif
  84. ifeq ($(ARCH),ppc)
  85. ELF += sched
  86. SREC += sched.srec
  87. BIN += sched.bin
  88. endif
  89. ifeq ($(ARCH),blackfin)
  90. BFIN_BIN = smc91111_eeprom smc911x_eeprom
  91. ELF += $(BFIN_BIN)
  92. SREC += $(addsuffix .srec,$(BFIN_BIN))
  93. BIN += $(addsuffix .bin,$(BFIN_BIN))
  94. endif
  95. # The following example is pretty 8xx specific...
  96. ifeq ($(CPU),mpc8xx)
  97. ELF += timer
  98. SREC += timer.srec
  99. BIN += timer.bin
  100. endif
  101. # The following example is 8260 specific...
  102. ifeq ($(CPU),mpc8260)
  103. ELF += mem_to_mem_idma2intr
  104. SREC += mem_to_mem_idma2intr.srec
  105. BIN += mem_to_mem_idma2intr.bin
  106. endif
  107. # Demo for 52xx IRQs
  108. ifeq ($(CPU),mpc5xxx)
  109. ELF += interrupt
  110. SREC += interrupt.srec
  111. BIN += interrupt.bin
  112. endif
  113. # Utility for resetting i82559 EEPROM
  114. ifeq ($(BOARD),oxc)
  115. ELF += eepro100_eeprom
  116. SREC += eepro100_eeprom.srec
  117. BIN += eepro100_eeprom.bin
  118. endif
  119. ifeq ($(BIG_ENDIAN),y)
  120. EX_LDFLAGS += -EB
  121. endif
  122. COBJS := $(SREC:.srec=.o)
  123. LIB = $(obj)libstubs.a
  124. LIBAOBJS=
  125. ifeq ($(ARCH),ppc)
  126. LIBAOBJS+= $(ARCH)_longjmp.o $(ARCH)_setjmp.o
  127. endif
  128. ifeq ($(CPU),mpc8xx)
  129. LIBAOBJS+= test_burst_lib.o
  130. endif
  131. LIBCOBJS= stubs.o
  132. LIBOBJS = $(addprefix $(obj),$(LIBAOBJS) $(LIBCOBJS))
  133. SRCS := $(COBJS:.o=.c) $(LIBCOBJS:.o=.c) $(if $(LIBAOBJS),$(LIBAOBJS:.o=.S))
  134. OBJS := $(addprefix $(obj),$(COBJS))
  135. ELF := $(addprefix $(obj),$(ELF))
  136. BIN := $(addprefix $(obj),$(BIN))
  137. SREC := $(addprefix $(obj),$(SREC))
  138. gcclibdir := $(shell dirname `$(CC) -print-libgcc-file-name`)
  139. clibdir := $(shell dirname `$(CC) $(CFLAGS) -print-file-name=libc.a`)
  140. CPPFLAGS += -I..
  141. all: $(obj).depend $(OBJS) $(LIB) $(SREC) $(BIN) $(ELF)
  142. #########################################################################
  143. $(LIB): $(obj).depend $(LIBOBJS)
  144. $(AR) $(ARFLAGS) $@ $(LIBOBJS)
  145. $(ELF):
  146. $(obj)%: $(obj)%.o $(LIB)
  147. $(LD) -g $(EX_LDFLAGS) -Ttext $(LOAD_ADDR) \
  148. -o $@ -e $(SYM_PREFIX)$(notdir $(<:.o=)) $< $(LIB) \
  149. -L$(gcclibdir) -lgcc
  150. $(SREC):
  151. $(obj)%.srec: $(obj)%
  152. $(OBJCOPY) -O srec $< $@ 2>/dev/null
  153. $(BIN):
  154. $(obj)%.bin: $(obj)%
  155. $(OBJCOPY) -O binary $< $@ 2>/dev/null
  156. #########################################################################
  157. # defines $(obj).depend target
  158. include $(SRCTREE)/rules.mk
  159. sinclude $(obj).depend
  160. #########################################################################