stm32f107_goldbull.make 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. ##############################################################################
  2. # Build global options
  3. # NOTE: Can be overridden externally.
  4. #
  5. # Compiler options here.
  6. ifeq ($(USE_OPT),)
  7. USE_OPT = -O2 -ggdb -fomit-frame-pointer -falign-functions=16
  8. endif
  9. # C specific options here (added to USE_OPT).
  10. ifeq ($(USE_COPT),)
  11. USE_COPT =
  12. endif
  13. # C++ specific options here (added to USE_OPT).
  14. ifeq ($(USE_CPPOPT),)
  15. USE_CPPOPT = -fno-rtti
  16. endif
  17. # Enable this if you want the linker to remove unused code and data.
  18. ifeq ($(USE_LINK_GC),)
  19. USE_LINK_GC = yes
  20. endif
  21. # Linker extra options here.
  22. ifeq ($(USE_LDOPT),)
  23. USE_LDOPT =
  24. endif
  25. # Enable this if you want link time optimizations (LTO).
  26. ifeq ($(USE_LTO),)
  27. USE_LTO = yes
  28. endif
  29. # Enable this if you want to see the full log while compiling.
  30. ifeq ($(USE_VERBOSE_COMPILE),)
  31. USE_VERBOSE_COMPILE = no
  32. endif
  33. # If enabled, this option makes the build process faster by not compiling
  34. # modules not used in the current configuration.
  35. ifeq ($(USE_SMART_BUILD),)
  36. USE_SMART_BUILD = yes
  37. endif
  38. #
  39. # Build global options
  40. ##############################################################################
  41. ##############################################################################
  42. # Architecture or project specific options
  43. #
  44. # Stack size to be allocated to the Cortex-M process stack. This stack is
  45. # the stack used by the main() thread.
  46. ifeq ($(USE_PROCESS_STACKSIZE),)
  47. USE_PROCESS_STACKSIZE = 0x400
  48. endif
  49. # Stack size to the allocated to the Cortex-M main/exceptions stack. This
  50. # stack is used for processing interrupts and exceptions.
  51. ifeq ($(USE_EXCEPTIONS_STACKSIZE),)
  52. USE_EXCEPTIONS_STACKSIZE = 0x400
  53. endif
  54. # Enables the use of FPU (no, softfp, hard).
  55. ifeq ($(USE_FPU),)
  56. USE_FPU = no
  57. endif
  58. # FPU-related options.
  59. ifeq ($(USE_FPU_OPT),)
  60. USE_FPU_OPT = -mfloat-abi=$(USE_FPU) -mfpu=fpv4-sp-d16
  61. endif
  62. #
  63. # Architecture or project specific options
  64. ##############################################################################
  65. ##############################################################################
  66. # Project, target, sources and paths
  67. #
  68. # Define project name here
  69. PROJECT = ch
  70. # Target settings.
  71. MCU = cortex-m3
  72. # Imported source files and paths.
  73. CHIBIOS := ../../..
  74. CONFDIR := ./cfg/stm32f107_goldbull
  75. BUILDDIR := ./build/stm32f107_goldbull
  76. DEPDIR := ./.dep/stm32f107_goldbull
  77. # Licensing files.
  78. include $(CHIBIOS)/os/license/license.mk
  79. # Startup files.
  80. include $(CHIBIOS)/os/common/startup/ARMCMx/compilers/GCC/mk/startup_stm32f1xx.mk
  81. # HAL-OSAL files (optional).
  82. include $(CHIBIOS)/os/hal/hal.mk
  83. include $(CHIBIOS)/os/hal/ports/STM32/STM32F1xx/platform_f105_f107.mk
  84. include $(CHIBIOS)/os/hal/boards/GOLDBULL_STM32_F107VC/board.mk
  85. include $(CHIBIOS)/os/hal/osal/rt/osal.mk
  86. # RTOS files (optional).
  87. include $(CHIBIOS)/os/rt/rt.mk
  88. include $(CHIBIOS)/os/common/ports/ARMCMx/compilers/GCC/mk/port_v7m.mk
  89. # Auto-build files in ./source recursively.
  90. include $(CHIBIOS)/tools/mk/autobuild.mk
  91. # Other files (optional).
  92. include $(CHIBIOS)/test/lib/test.mk
  93. include $(CHIBIOS)/test/rt/rt_test.mk
  94. include $(CHIBIOS)/test/oslib/oslib_test.mk
  95. include $(CHIBIOS)/os/hal/lib/streams/streams.mk
  96. include $(CHIBIOS)/os/various/shell/shell.mk
  97. include $(CHIBIOS)/os/various/lwip_bindings/lwip.mk
  98. include $(CHIBIOS)/os/various/fatfs_bindings/fatfs.mk
  99. # Define linker script file here
  100. LDSCRIPT= $(STARTUPLD)/STM32F107xC.ld
  101. # C sources that can be compiled in ARM or THUMB mode depending on the global
  102. # setting.
  103. CSRC = $(ALLCSRC) \
  104. $(TESTSRC) \
  105. $(CHIBIOS)/os/various/evtimer.c \
  106. $(CONFDIR)/portab.c \
  107. main.c
  108. # C++ sources that can be compiled in ARM or THUMB mode depending on the global
  109. # setting.
  110. CPPSRC = $(ALLCPPSRC)
  111. # List ASM source files here.
  112. ASMSRC = $(ALLASMSRC)
  113. # List ASM with preprocessor source files here.
  114. ASMXSRC = $(ALLXASMSRC)
  115. # Inclusion directories.
  116. INCDIR = $(CONFDIR) $(ALLINC) $(TESTINC) ./cfg
  117. # Define C warning options here.
  118. CWARN = -Wall -Wextra -Wundef -Wstrict-prototypes
  119. # Define C++ warning options here.
  120. CPPWARN = -Wall -Wextra -Wundef
  121. #
  122. # Project, target, sources and paths
  123. ##############################################################################
  124. ##############################################################################
  125. # Start of user section
  126. #
  127. # List all user C define here, like -D_DEBUG=1
  128. UDEFS =
  129. # Define ASM defines here
  130. UADEFS =
  131. # List all user directories here
  132. UINCDIR =
  133. # List the user directory to look for the libraries here
  134. ULIBDIR =
  135. # List all user libraries here
  136. ULIBS =
  137. #
  138. # End of user section
  139. ##############################################################################
  140. ##############################################################################
  141. # Common rules
  142. #
  143. RULESPATH = $(CHIBIOS)/os/common/startup/ARMCMx/compilers/GCC/mk
  144. include $(RULESPATH)/arm-none-eabi.mk
  145. include $(RULESPATH)/rules.mk
  146. #
  147. # Common rules
  148. ##############################################################################
  149. ##############################################################################
  150. # Custom rules
  151. #
  152. #
  153. # Custom rules
  154. ##############################################################################