Makefile 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. #
  2. # (C) Copyright 2000-2004
  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. LOAD_ADDR = 0xc100000
  31. endif
  32. ifeq ($(ARCH),mips)
  33. LOAD_ADDR = 0x80200000 -T mips.lds
  34. endif
  35. ifeq ($(ARCH),nios)
  36. LOAD_ADDR = 0x00800000 -L $(gcclibdir)/m32 -T nios.lds
  37. endif
  38. ifeq ($(ARCH),nios2)
  39. LOAD_ADDR = 0x00800000 -L $(gcclibdir) -T nios2.lds
  40. endif
  41. ifeq ($(ARCH),m68k)
  42. LOAD_ADDR = 0x20000 -L $(clibdir)
  43. endif
  44. ifeq ($(ARCH),microblaze)
  45. LOAD_ADDR = 0x80F00000
  46. endif
  47. include $(TOPDIR)/config.mk
  48. SREC = hello_world.srec
  49. BIN = hello_world.bin hello_world
  50. ifeq ($(CPU),mpc8xx)
  51. SREC = test_burst.srec
  52. BIN = test_burst.bin test_burst
  53. endif
  54. ifeq ($(ARCH),i386)
  55. SREC += 82559_eeprom.srec
  56. BIN += 82559_eeprom.bin 82559_eeprom
  57. endif
  58. ifeq ($(ARCH),ppc)
  59. SREC += sched.srec
  60. BIN += sched.bin sched
  61. endif
  62. # The following example is pretty 8xx specific...
  63. ifeq ($(CPU),mpc8xx)
  64. SREC += timer.srec
  65. BIN += timer.bin timer
  66. endif
  67. # The following example is 8260 specific...
  68. ifeq ($(CPU),mpc8260)
  69. SREC += mem_to_mem_idma2intr.srec
  70. BIN += mem_to_mem_idma2intr.bin mem_to_mem_idma2intr
  71. endif
  72. # Utility for resetting i82559 EEPROM
  73. ifeq ($(BOARD),oxc)
  74. SREC += eepro100_eeprom.srec
  75. BIN += eepro100_eeprom.bin eepro100_eeprom
  76. endif
  77. ifeq ($(BIG_ENDIAN),y)
  78. EX_LDFLAGS += -EB
  79. endif
  80. OBJS = $(SREC:.srec=.o)
  81. LIB = libstubs.a
  82. LIBAOBJS=
  83. ifeq ($(ARCH),ppc)
  84. LIBAOBJS+= $(ARCH)_longjmp.o $(ARCH)_setjmp.o
  85. endif
  86. ifeq ($(CPU),mpc8xx)
  87. LIBAOBJS+= test_burst_lib.o
  88. endif
  89. LIBCOBJS= stubs.o
  90. LIBOBJS = $(LIBAOBJS) $(LIBCOBJS)
  91. gcclibdir := $(shell dirname `$(CC) -print-libgcc-file-name`)
  92. clibdir := $(shell dirname `$(CC) $(CFLAGS) -print-file-name=libc.a`)
  93. CPPFLAGS += -I..
  94. all: .depend $(OBJS) $(LIB) #$(SREC) $(BIN)
  95. #########################################################################
  96. $(LIB): .depend $(LIBOBJS)
  97. $(AR) crv $@ $(LIBOBJS)
  98. %: %.o $(LIB)
  99. $(LD) -g $(EX_LDFLAGS) -Ttext $(LOAD_ADDR) \
  100. -o $@ -e $(<:.o=) $< $(LIB) \
  101. -L$(gcclibdir) -lgcc
  102. %.srec: %
  103. $(OBJCOPY) -O srec $< $@ 2>/dev/null
  104. %.bin: %
  105. $(OBJCOPY) -O binary $< $@ 2>/dev/null
  106. #########################################################################
  107. .depend: Makefile $(OBJS:.o=.c) $(LIBCOBJS:.o=.c) $(LIBAOBJS:.o=.S)
  108. $(CC) -M $(CFLAGS) $(OBJS:.o=.c) $(LIBCOBJS:.o=.c) $(LIBAOBJS:.o=.S) > $@
  109. sinclude .depend
  110. #########################################################################