Guest User

Untitled

a guest
Jul 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.35 KB | None | 0 0
  1. **** Build of configuration Debug for project FatFstest ****
  2.  
  3. make all
  4. make: *** No rule to make target `main.o', needed by `FatFstest.elf'. Stop.
  5.  
  6. ################################################################################
  7. # Automatically-generated file. Do not edit!
  8. ################################################################################
  9.  
  10. -include ../makefile.init
  11.  
  12. RM := rm -rf
  13.  
  14. # All of the sources participating in the build are defined here
  15. -include sources.mk
  16. -include subdir.mk
  17. -include src/subdir.mk
  18. -include objects.mk
  19.  
  20. ifneq ($(MAKECMDGOALS),clean)
  21. ifneq ($(strip $(C_DEPS)),)
  22. -include $(C_DEPS)
  23. endif
  24. ifneq ($(strip $(ASM_DEPS)),)
  25. -include $(ASM_DEPS)
  26. endif
  27. ifneq ($(strip $(S_DEPS)),)
  28. -include $(S_DEPS)
  29. endif
  30. ifneq ($(strip $(S_UPPER_DEPS)),)
  31. -include $(S_UPPER_DEPS)
  32. endif
  33. endif
  34.  
  35. -include ../makefile.defs
  36.  
  37. # Add inputs and outputs from these tool invocations to the build variables
  38. LSS +=
  39. FatFstest.lss
  40.  
  41. SIZEDUMMY +=
  42. sizedummy
  43.  
  44. AVRDUDEDUMMY +=
  45. avrdudedummy
  46.  
  47.  
  48. # All Target
  49. all: FatFstest.elf secondary-outputs
  50.  
  51. # Tool invocations
  52. FatFstest.elf: $(OBJS) $(USER_OBJS)
  53. @echo 'Building target: $@'
  54. @echo 'Invoking: AVR C Linker'
  55. avr-gcc -Wl,-Map,FatFstest.map -mmcu=atmega328p -o"FatFstest.elf" $(OBJS) $(USER_OBJS) $(LIBS)
  56. @echo 'Finished building target: $@'
  57. @echo ' '
  58.  
  59. FatFstest.lss: FatFstest.elf
  60. @echo 'Invoking: AVR Create Extended Listing'
  61. -avr-objdump -h -S FatFstest.elf >"FatFstest.lss"
  62. @echo 'Finished building: $@'
  63. @echo ' '
  64.  
  65. sizedummy: FatFstest.elf
  66. @echo 'Invoking: Print Size'
  67. -avr-size --format=avr --mcu=atmega328p FatFstest.elf
  68. @echo 'Finished building: $@'
  69. @echo ' '
  70.  
  71. avrdudedummy: FatFstest.elf
  72. @echo 'Invoking: AVRDude'
  73. /usr/local/CrossPack-AVR-20100115/bin/avrdude -pm328p -Uflash:w:FatFstest.hex:a
  74. @echo 'Finished building: $@'
  75. @echo ' '
  76.  
  77. # Other Targets
  78. clean:
  79. -$(RM) $(OBJS)$(C_DEPS)$(ASM_DEPS)$(ELFS)$(LSS)$(AVRDUDEDUMMY)$(S_DEPS)$(SIZEDUMMY)$(S_UPPER_DEPS) FatFstest.elf
  80. -@echo ' '
  81.  
  82. secondary-outputs: $(LSS) $(SIZEDUMMY) $(AVRDUDEDUMMY)
  83.  
  84. .PHONY: all clean dependents
  85. .SECONDARY:
  86.  
  87. -include ../makefile.targets
  88.  
  89. #include <diskio.h>
  90. #include <ff.h>
  91. #include <stdio.h>
  92. int main(void)
  93. {
  94. printf("hello worldn");
  95. return 0;
  96. }
  97.  
  98. ################################################################################
  99. # Automatically-generated file. Do not edit!
  100. ################################################################################
  101.  
  102. # Add inputs and outputs from these tool invocations to the build variables
  103. C_SRCS +=
  104. ../src/diskio.c
  105. ../src/ff.c
  106. ../src/main.c
  107.  
  108. OBJS +=
  109. ./src/diskio.o
  110. ./src/ff.o
  111. ./src/main.o
  112.  
  113. C_DEPS +=
  114. ./src/diskio.d
  115. ./src/ff.d
  116. ./src/main.d
  117.  
  118.  
  119. # Each subdirectory must supply rules for building sources it contributes
  120. src/%.o: ../src/%.c
  121. @echo 'Building file: $<'
  122. @echo 'Invoking: AVR Compiler'
  123. avr-gcc -I"/Users/nathannewcomb/Documents/Puzzles/FatFstest/src" -Wall -g2 -gstabs -O0 -fpack-struct -fshort-enums -std=gnu99 -funsigned-char -funsigned-bitfields -mmcu=atmega328p -DF_CPU=1000000UL -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -c -o"$@" "$<"
  124. @echo 'Finished building: $<'
  125. @echo ' '
  126.  
  127. ################################################################################
  128. # Automatically-generated file. Do not edit!
  129. ################################################################################
  130.  
  131. USER_OBJS :=
  132.  
  133. LIBS :=
  134.  
  135. ################################################################################
  136. # Automatically-generated file. Do not edit!
  137. ################################################################################
  138.  
  139. O_SRCS :=
  140. C_SRCS :=
  141. S_UPPER_SRCS :=
  142. S_SRCS :=
  143. OBJ_SRCS :=
  144. ASM_SRCS :=
  145. OBJS :=
  146. C_DEPS :=
  147. ASM_DEPS :=
  148. ELFS :=
  149. LSS :=
  150. AVRDUDEDUMMY :=
  151. S_DEPS :=
  152. SIZEDUMMY :=
  153. S_UPPER_DEPS :=
  154.  
  155. # Every subdirectory with source files must be described here
  156. SUBDIRS :=
  157. src
  158.  
  159. avr-gcc -I"/Users/nathannewcomb/Documents/Puzzles/FatFstest/src" -Wall -g2 -gstabs -O0 -fpack-struct -fshort-enums -std=gnu99 -funsigned-char -funsigned-bitfields -mmcu=atmega328p -DF_CPU=1000000UL -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -c -o"$@" "$<"
  160.  
  161. avr-gcc -Wall -g2 -gstabs -O0 -fpack-struct -fshort-enums -std=gnu99 -funsigned-char -funsigned-bitfields -mmcu=atmega328p -DF_CPU=1000000UL -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -c -o"$@" "$<"
  162.  
  163. # Every subdirectory with source files must be described here
  164. SUBDIRS :=
  165. src
Add Comment
Please, Sign In to add comment