makefile 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. ################################################################################
  2. # Automatically-generated file. Do not edit!
  3. ################################################################################
  4. -include ../makefile.init
  5. RM := rm -rf
  6. # All of the sources participating in the build are defined here
  7. -include sources.mk
  8. -include src/subdir.mk
  9. -include generate/src/subdir.mk
  10. -include board/subdir.mk
  11. -include RTD/src/subdir.mk
  12. -include Project_Settings/Startup_Code/subdir.mk
  13. -include FreeRTOS/Source/portable/MemMang/subdir.mk
  14. -include FreeRTOS/Source/portable/GCC/ARM_CM4F/subdir.mk
  15. -include FreeRTOS/Source/subdir.mk
  16. -include subdir.mk
  17. -include objects.mk
  18. ifneq ($(MAKECMDGOALS),clean)
  19. ifneq ($(strip $(C_DEPS)),)
  20. -include $(C_DEPS)
  21. endif
  22. endif
  23. -include ../makefile.defs
  24. # Add inputs and outputs from these tool invocations to the build variables
  25. SECONDARY_FLASH += \
  26. S32K144_BLE.hex \
  27. SECONDARY_SIZE += \
  28. S32K144_BLE.siz \
  29. # All Target
  30. all: S32K144_BLE.elf secondary-outputs
  31. # Tool invocations
  32. S32K144_BLE.elf: $(OBJS) D:/Work/NXPWorkSpace/S32K144_BLE/Project_Settings/Linker_Files/linker_flash_s32k144.ld $(USER_OBJS)
  33. @echo 'Building target: $@'
  34. @echo 'Invoking: Standard S32DS C Linker'
  35. arm-none-eabi-gcc -o "S32K144_BLE.elf" "@S32K144_BLE.args" $(USER_OBJS)
  36. @echo 'Finished building target: $@'
  37. @echo ' '
  38. S32K144_BLE.hex: S32K144_BLE.elf
  39. @echo 'Invoking: Standard S32DS Create Flash Image'
  40. arm-none-eabi-objcopy -O ihex S32K144_BLE.elf "S32K144_BLE.hex"
  41. @echo 'Finished building: $@'
  42. @echo ' '
  43. S32K144_BLE.siz: S32K144_BLE.elf
  44. @echo 'Invoking: Standard S32DS Print Size'
  45. arm-none-eabi-size --format=berkeley -x S32K144_BLE.elf
  46. @echo 'Finished building: $@'
  47. @echo ' '
  48. # Other Targets
  49. clean:
  50. -$(RM) ./*
  51. -@echo ' '
  52. secondary-outputs: $(SECONDARY_FLASH) $(SECONDARY_SIZE)
  53. .PHONY: all clean dependents
  54. -include ../makefile.targets