Makefile 4.0 KB

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