123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- ################################################################################
- # Automatically-generated file. Do not edit!
- ################################################################################
- -include ../makefile.init
- RM := rm -f
- # All of the sources participating in the build are defined here
- -include sources.mk
- -include subdir.mk
- -include scutil/subdir.mk
- -include core/core/subdir.mk
- -include objects.mk
- ifneq ($(MAKECMDGOALS),clean)
- ifneq ($(strip $(CC_DEPS)),)
- -include $(CC_DEPS)
- endif
- ifneq ($(strip $(C++_DEPS)),)
- -include $(C++_DEPS)
- endif
- ifneq ($(strip $(C_UPPER_DEPS)),)
- -include $(C_UPPER_DEPS)
- endif
- ifneq ($(strip $(CXX_DEPS)),)
- -include $(CXX_DEPS)
- endif
- ifneq ($(strip $(ASM_DEPS)),)
- -include $(ASM_DEPS)
- endif
- ifneq ($(strip $(INO_DEPS)),)
- -include $(INO_DEPS)
- endif
- ifneq ($(strip $(PDE_DEPS)),)
- -include $(PDE_DEPS)
- endif
- ifneq ($(strip $(S_UPPER_DEPS)),)
- -include $(S_UPPER_DEPS)
- endif
- ifneq ($(strip $(CPP_DEPS)),)
- -include $(CPP_DEPS)
- endif
- ifneq ($(strip $(C_DEPS)),)
- -include $(C_DEPS)
- endif
- endif
- -include ../makefile.defs
- # Add inputs and outputs from these tool invocations to the build variables
- AR += \
- arduino.ar \
- ELF += \
- traffic_light_arduino.elf \
- EEP += \
- traffic_light_arduino.eep \
- FLASH_IMAGE += \
- traffic_light_arduino.hex \
- # All Target
- all: traffic_light_arduino
- # Tool invocations
- traffic_light_arduino: $(FLASH_IMAGE)
- @echo 'Building target: $@'
- @echo 'Printing size:'
- "/home/beckmann/Downloads/yakindu-sctpro/arduinoPlugin/tools/arduino/avr-gcc/4.8.1-arduino5/bin/avr-size" -A "/home/beckmann/YAKINDU_SCTPRO/ws/traffic_light_arduino/Release/traffic_light_arduino.elf"
- @echo 'Finished building target: $@'
- @echo ' '
- arduino.ar: $(AR_OBJ)
- @echo 'Starting archiver'
- "/home/beckmann/Downloads/yakindu-sctpro/arduinoPlugin/tools/arduino/avr-gcc/4.8.1-arduino5/bin/avr-ar" rcs "/home/beckmann/YAKINDU_SCTPRO/ws/traffic_light_arduino/Release/arduino.ar" arduino.ar $(AR_OBJ)
- @echo 'Finished building: $@'
- @echo ' '
- traffic_light_arduino.elf: $(LINK_OBJ) $(AR)
- @echo 'Starting combiner'
- "/home/beckmann/Downloads/yakindu-sctpro/arduinoPlugin/tools/arduino/avr-gcc/4.8.1-arduino5/bin/avr-gcc" -Os -Wl,--gc-sections -mmcu=atmega328p -o "/home/beckmann/YAKINDU_SCTPRO/ws/traffic_light_arduino/Release/traffic_light_arduino.elf" $(LINK_OBJ) $(AR) "-L/home/beckmann/YAKINDU_SCTPRO/ws/traffic_light_arduino/Release" -lm
- @echo 'Finished building: $@'
- @echo ' '
- traffic_light_arduino.eep: $(ELF)
- @echo 'Create eeprom image'
- "/home/beckmann/Downloads/yakindu-sctpro/arduinoPlugin/tools/arduino/avr-gcc/4.8.1-arduino5/bin/avr-objcopy" -O ihex -j .eeprom --set-section-flags=.eeprom=alloc,load --no-change-warnings --change-section-lma .eeprom=0 "/home/beckmann/YAKINDU_SCTPRO/ws/traffic_light_arduino/Release/traffic_light_arduino.elf" "/home/beckmann/YAKINDU_SCTPRO/ws/traffic_light_arduino/Release/traffic_light_arduino.eep"
- @echo 'Finished building: $@'
- @echo ' '
- traffic_light_arduino.hex: $(EEP)
- @echo 'Create Flash image (ihex format)'
- "/home/beckmann/Downloads/yakindu-sctpro/arduinoPlugin/tools/arduino/avr-gcc/4.8.1-arduino5/bin/avr-objcopy" -O ihex -R .eeprom "/home/beckmann/YAKINDU_SCTPRO/ws/traffic_light_arduino/Release/traffic_light_arduino.elf" "/home/beckmann/YAKINDU_SCTPRO/ws/traffic_light_arduino/Release/traffic_light_arduino.hex"
- @echo 'Finished building: $@'
- @echo ' '
- # Other Targets
- clean:
- -$(RM) $(C_UPPER_DEPS)$(PDE_DEPS)$(C_DEPS)$(AR)$(EEP)$(FLASH_IMAGE)$(CC_DEPS)$(AR_OBJ)$(C++_DEPS)$(LINK_OBJ)$(CXX_DEPS)$(ASM_DEPS)$(INO_DEPS)$(SIZEDUMMY)$(S_UPPER_DEPS)$(ELF)$(CPP_DEPS) traffic_light_arduino
- -@echo ' '
- .PHONY: all clean dependents
- .SECONDARY:
- -include ../makefile.targets
|