Advertisement
Guest User

Untitled

a guest
May 5th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 1.74 KB | None | 0 0
  1. ################################################################################
  2. # Automatically-generated file. Do not edit!
  3. ################################################################################
  4.  
  5. -include ../makefile.init
  6.  
  7. RM := rm -rf
  8.  
  9. # All of the sources participating in the build are defined here
  10. -include sources.mk
  11. -include Startup/subdir.mk
  12. -include Src/subdir.mk
  13. -include Drivers/STM32L1xx_HAL_Driver/Src/subdir.mk
  14. -include subdir.mk
  15. -include objects.mk
  16.  
  17. ifneq ($(MAKECMDGOALS),clean)
  18. ifneq ($(strip $(C_DEPS)),)
  19. -include $(C_DEPS)
  20. endif
  21. endif
  22.  
  23. -include ../makefile.defs
  24.  
  25. # Add inputs and outputs from these tool invocations to the build variables
  26. EXECUTABLES += \
  27. FlashLed.elf \
  28.  
  29. SIZE_OUTPUT += \
  30. default.size.stdout \
  31.  
  32. OBJDUMP_LIST += \
  33. FlashLed.list \
  34.  
  35.  
  36. # All Target
  37. all: FlashLed.elf secondary-outputs
  38.  
  39. # Tool invocations
  40. FlashLed.elf: $(OBJS) $(USER_OBJS) /home/maxept/STM32Projects/flash-led/STM32L100RCTX_FLASH.ld
  41.     arm-none-eabi-gcc -o "FlashLed.elf" @"objects.list" $(USER_OBJS) $(LIBS) -mcpu=cortex-m3 -T"/home/maxept/STM32Projects/flash-led/STM32L100RCTX_FLASH.ld" --specs=nosys.specs -Wl,-Map="FlashLed.map" -Wl,--gc-sections -static --specs=nano.specs -mfloat-abi=soft -mthumb -Wl,--start-group -lc -lm -Wl,--end-group
  42.     @echo 'Finished building target: $@'
  43.     @echo ' '
  44.  
  45. default.size.stdout: $(EXECUTABLES)
  46.     arm-none-eabi-size  $(EXECUTABLES)
  47.     @echo 'Finished building: $@'
  48.     @echo ' '
  49.  
  50. FlashLed.list: $(EXECUTABLES)
  51.     arm-none-eabi-objdump -h -S $(EXECUTABLES) > "FlashLed.list"
  52.     @echo 'Finished building: $@'
  53.     @echo ' '
  54.  
  55. # Other Targets
  56. clean:
  57.     -$(RM) *
  58.     -@echo ' '
  59.  
  60. secondary-outputs: $(SIZE_OUTPUT) $(OBJDUMP_LIST)
  61.  
  62. .PHONY: all clean dependents
  63. .SECONDARY:
  64.  
  65. -include ../makefile.targets
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement