fixed issue #1
This commit is contained in:
@ -54,39 +54,39 @@ endif
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
AR += \
|
||||
/home/hendrik/eclipse-workspace/Arduino/simpleReflowController/Release/arduino.ar \
|
||||
/home/hendrik/eclipse-workspace/arduino/SimpleReflowController/Release/arduino.ar \
|
||||
|
||||
ELF += \
|
||||
simpleReflowController.elf \
|
||||
SimpleReflowController.elf \
|
||||
|
||||
HEX += \
|
||||
simpleReflowController.hex \
|
||||
SimpleReflowController.hex \
|
||||
|
||||
|
||||
# All Target
|
||||
all: simpleReflowController
|
||||
all: SimpleReflowController
|
||||
|
||||
# Tool invocations
|
||||
simpleReflowController: $(HEX)
|
||||
SimpleReflowController: $(HEX)
|
||||
@echo 'Building target: $@'
|
||||
@echo 'Printing size:'
|
||||
"/home/hendrik/bin/sloeber//arduinoPlugin/packages/arduino/tools/avr-gcc/5.4.0-atmel3.6.1-arduino2/bin/avr-size" -A "/home/hendrik/eclipse-workspace/Arduino/simpleReflowController/Release/simpleReflowController.elf"
|
||||
"/home/hendrik/bin/sloeber//arduinoPlugin/packages/arduino/tools/avr-gcc/5.4.0-atmel3.6.1-arduino2/bin/avr-size" -A "/home/hendrik/eclipse-workspace/arduino/SimpleReflowController/Release/SimpleReflowController.elf"
|
||||
@echo 'Finished building target: $@'
|
||||
@echo ' '
|
||||
|
||||
/home/hendrik/eclipse-workspace/Arduino/simpleReflowController/Release/arduino.ar: $(AR_OBJ)
|
||||
/home/hendrik/eclipse-workspace/arduino/SimpleReflowController/Release/arduino.ar: $(AR_OBJ)
|
||||
@echo 'Starting archiver'
|
||||
"/home/hendrik/bin/sloeber//arduinoPlugin/packages/arduino/tools/avr-gcc/5.4.0-atmel3.6.1-arduino2/bin/avr-gcc-ar" rcs /home/hendrik/eclipse-workspace/Arduino/simpleReflowController/Release/arduino.ar $(AR_OBJ)
|
||||
"/home/hendrik/bin/sloeber//arduinoPlugin/packages/arduino/tools/avr-gcc/5.4.0-atmel3.6.1-arduino2/bin/avr-gcc-ar" rcs /home/hendrik/eclipse-workspace/arduino/SimpleReflowController/Release/arduino.ar $(AR_OBJ)
|
||||
@echo 'Finished building: $@'
|
||||
@echo ' '
|
||||
|
||||
simpleReflowController.elf: $(LINK_OBJ) $(AR)
|
||||
SimpleReflowController.elf: $(LINK_OBJ) $(AR)
|
||||
@echo 'Starting combiner'
|
||||
"/home/hendrik/bin/sloeber//arduinoPlugin/packages/arduino/tools/avr-gcc/5.4.0-atmel3.6.1-arduino2/bin/avr-gcc" -Wall -Wextra -Os -g -flto -fuse-linker-plugin -Wl,--gc-sections -mmcu=atmega328p -o "/home/hendrik/eclipse-workspace/Arduino/simpleReflowController/Release/simpleReflowController.elf" $(LINK_OBJ) /home/hendrik/eclipse-workspace/Arduino/simpleReflowController/Release/arduino.ar "-L/home/hendrik/eclipse-workspace/Arduino/simpleReflowController/Release" -lm
|
||||
"/home/hendrik/bin/sloeber//arduinoPlugin/packages/arduino/tools/avr-gcc/5.4.0-atmel3.6.1-arduino2/bin/avr-gcc" -Wall -Wextra -Os -g -flto -fuse-linker-plugin -Wl,--gc-sections -mmcu=atmega328p -o "/home/hendrik/eclipse-workspace/arduino/SimpleReflowController/Release/SimpleReflowController.elf" $(LINK_OBJ) /home/hendrik/eclipse-workspace/arduino/SimpleReflowController/Release/arduino.ar "-L/home/hendrik/eclipse-workspace/arduino/SimpleReflowController/Release" -lm
|
||||
@echo 'Finished building: $@'
|
||||
@echo ' '
|
||||
|
||||
simpleReflowController.hex: $(ELF)
|
||||
SimpleReflowController.hex: $(ELF)
|
||||
@echo 'Do all objcopy commands'
|
||||
${A.RECIPE.OBJCOPY.EEP.PATTERN}
|
||||
${A.RECIPE.OBJCOPY.HEX.PATTERN}
|
||||
|
Reference in New Issue
Block a user