forked from robomechs/6-AXIS-USBCNC-GRBL
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
19,034 additions
and
18,778 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
################################################################################ | ||
# Automatically-generated file. Do not edit! | ||
################################################################################ | ||
|
||
-include ../makefile.init | ||
|
||
RM := rm -rf | ||
|
||
# All of the sources participating in the build are defined here | ||
-include sources.mk | ||
-include util/subdir.mk | ||
-include usb/subdir.mk | ||
-include stm_usb_fs_lib/src/subdir.mk | ||
-include src/subdir.mk | ||
-include Libraries/STM32F10x_StdPeriph_Driver/src/subdir.mk | ||
-include subdir.mk | ||
-include objects.mk | ||
|
||
ifneq ($(MAKECMDGOALS),clean) | ||
ifneq ($(strip $(C_DEPS)),) | ||
-include $(C_DEPS) | ||
endif | ||
endif | ||
|
||
-include ../makefile.defs | ||
|
||
# Add inputs and outputs from these tool invocations to the build variables | ||
EXECUTABLES += \ | ||
stm32grbl11.elf \ | ||
|
||
SIZE_OUTPUT += \ | ||
default.size.stdout \ | ||
|
||
OBJDUMP_LIST += \ | ||
stm32grbl11.list \ | ||
|
||
OBJCOPY_HEX += \ | ||
stm32grbl11.hex \ | ||
|
||
OBJCOPY_BIN += \ | ||
stm32grbl11.bin \ | ||
|
||
|
||
# All Target | ||
all: stm32grbl11.elf secondary-outputs | ||
|
||
# Tool invocations | ||
stm32grbl11.elf: $(OBJS) $(USER_OBJS) ../stm32_flash.ld | ||
arm-none-eabi-gcc -o "stm32grbl11.elf" @"objects.list" $(USER_OBJS) $(LIBS) -mcpu=cortex-m3 -T"../stm32_flash.ld" --specs=nosys.specs -Wl,-Map="stm32grbl11.map" -Wl,--gc-sections -static -mfloat-abi=soft -mthumb -Wl,--start-group -lc -lm -Wl,--end-group | ||
@echo 'Finished building target: $@' | ||
@echo ' ' | ||
|
||
default.size.stdout: $(EXECUTABLES) | ||
arm-none-eabi-size $(EXECUTABLES) | ||
@echo 'Finished building: $@' | ||
@echo ' ' | ||
|
||
stm32grbl11.list: $(EXECUTABLES) | ||
arm-none-eabi-objdump -h -S $(EXECUTABLES) > "stm32grbl11.list" | ||
@echo 'Finished building: $@' | ||
@echo ' ' | ||
|
||
stm32grbl11.hex: $(EXECUTABLES) | ||
arm-none-eabi-objcopy -O ihex $(EXECUTABLES) "stm32grbl11.hex" | ||
@echo 'Finished building: $@' | ||
@echo ' ' | ||
|
||
stm32grbl11.bin: $(EXECUTABLES) | ||
arm-none-eabi-objcopy -O binary $(EXECUTABLES) "stm32grbl11.bin" | ||
@echo 'Finished building: $@' | ||
@echo ' ' | ||
|
||
# Other Targets | ||
clean: | ||
-$(RM) * | ||
-@echo ' ' | ||
|
||
secondary-outputs: $(SIZE_OUTPUT) $(OBJDUMP_LIST) $(OBJCOPY_HEX) $(OBJCOPY_BIN) | ||
|
||
.PHONY: all clean dependents | ||
.SECONDARY: | ||
|
||
-include ../makefile.targets |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/misc.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_adc.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_bkp.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_can.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_cec.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_crc.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dac.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dbgmcu.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_dma.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_exti.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_flash.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_fsmc.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_gpio.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_i2c.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_iwdg.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_pwr.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_rcc.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_rtc.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_sdio.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_spi.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_tim.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_usart.o" | ||
"Libraries/STM32F10x_StdPeriph_Driver/src/stm32f10x_wwdg.o" | ||
"src/coolant_control.o" | ||
"src/eeprom.o" | ||
"src/gcode.o" | ||
"src/jog.o" | ||
"src/limits.o" | ||
"src/main.o" | ||
"src/motion_control.o" | ||
"src/nuts_bolts.o" | ||
"src/planner.o" | ||
"src/print.o" | ||
"src/probe.o" | ||
"src/protocol.o" | ||
"src/report.o" | ||
"src/serial.o" | ||
"src/settings.o" | ||
"src/spindle_control.o" | ||
"src/startup_stm32f10x_md.o" | ||
"src/stepper.o" | ||
"src/system.o" | ||
"src/system_stm32f10x.o" | ||
"src/tmc2300.o" | ||
"stm_usb_fs_lib/src/usb_core.o" | ||
"stm_usb_fs_lib/src/usb_init.o" | ||
"stm_usb_fs_lib/src/usb_int.o" | ||
"stm_usb_fs_lib/src/usb_mem.o" | ||
"stm_usb_fs_lib/src/usb_regs.o" | ||
"stm_usb_fs_lib/src/usb_sil.o" | ||
"usb/hw_config.o" | ||
"usb/usb_desc.o" | ||
"usb/usb_endp.o" | ||
"usb/usb_istr.o" | ||
"usb/usb_prop.o" | ||
"usb/usb_pwr.o" | ||
"util/stm32f10x_it.o" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
################################################################################ | ||
# Automatically-generated file. Do not edit! | ||
################################################################################ | ||
|
||
USER_OBJS := | ||
|
||
LIBS := | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
################################################################################ | ||
# Automatically-generated file. Do not edit! | ||
################################################################################ | ||
|
||
ELF_SRCS := | ||
OBJ_SRCS := | ||
S_SRCS := | ||
C_SRCS := | ||
S_UPPER_SRCS := | ||
O_SRCS := | ||
OBJCOPY_HEX := | ||
SIZE_OUTPUT := | ||
OBJDUMP_LIST := | ||
EXECUTABLES := | ||
OBJS := | ||
C_DEPS := | ||
OBJCOPY_BIN := | ||
|
||
# Every subdirectory with source files must be described here | ||
SUBDIRS := \ | ||
Libraries/STM32F10x_StdPeriph_Driver/src \ | ||
src \ | ||
stm_usb_fs_lib/src \ | ||
usb \ | ||
util \ | ||
|
Binary file not shown.
Binary file not shown.
Oops, something went wrong.