-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'hotfix/Update_project_files' into develop
- Loading branch information
Showing
69 changed files
with
10,816 additions
and
373 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
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
This file was deleted.
Oops, something went wrong.
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,69 @@ | ||
################################################################################ | ||
# 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 src/netutil/subdir.mk | ||
-include src/callback/subdir.mk | ||
-include src/S2E/subdir.mk | ||
-include src/PlatformHandler/subdir.mk | ||
-include src/Internet/httpServer/subdir.mk | ||
-include src/Internet/TFTP/subdir.mk | ||
-include src/Internet/SNTP/subdir.mk | ||
-include src/Internet/SNMP/subdir.mk | ||
-include src/Internet/MQTT/MQTTPacket/src/subdir.mk | ||
-include src/Internet/MQTT/subdir.mk | ||
-include src/Internet/FTPServer/subdir.mk | ||
-include src/Internet/FTPClient/subdir.mk | ||
-include src/Internet/DNS/subdir.mk | ||
-include src/Internet/DHCP/subdir.mk | ||
-include src/Ethernet/W5500/subdir.mk | ||
-include src/Ethernet/subdir.mk | ||
-include src/Configuration/subdir.mk | ||
-include src/ATcmd/library/subdir.mk | ||
-include src/ATcmd/subdir.mk | ||
-include 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 | ||
|
||
# All Target | ||
all: WIZ550S2E_App.axf | ||
|
||
# Tool invocations | ||
WIZ550S2E_App.axf: $(OBJS) $(USER_OBJS) | ||
@echo 'Building target: $@' | ||
@echo 'Invoking: MCU Linker' | ||
arm-none-eabi-gcc -nostdlib -L"D:\__Workspace\___Source\WIZnet\WIZ550S2E\wiznet_s2e_wiz550s2e_board\Release" -L"D:\__Workspace\___Source\WIZnet\WIZ550S2E\lpc_chip_11exx\Release" -Xlinker -Map="WIZ550S2E_App.map" -Xlinker --gc-sections -Xlinker --allow-multiple-definition -mcpu=cortex-m0 -mthumb -T "WIZ550S2E.ld" -L ../linkscripts -o "WIZ550S2E_App.axf" $(OBJS) $(USER_OBJS) $(LIBS) | ||
@echo 'Finished building target: $@' | ||
@echo ' ' | ||
$(MAKE) --no-print-directory post-build | ||
|
||
# Other Targets | ||
clean: | ||
-$(RM) $(OBJS)$(C_DEPS)$(EXECUTABLES) WIZ550S2E_App.axf | ||
-@echo ' ' | ||
|
||
post-build: | ||
-@echo 'Performing post-build steps' | ||
-arm-none-eabi-size "WIZ550S2E_App.axf" ; arm-none-eabi-objcopy -O ihex "WIZ550S2E_App.axf" "WIZ550S2E_App.hex" ; arm-none-eabi-objcopy -v -O binary "WIZ550S2E_App.axf" "WIZ550S2E_App.bin" ; # checksum -p LPC11E36_501 -d "WIZ550S2E_App.bin" | ||
-@echo ' ' | ||
|
||
.PHONY: all clean dependents | ||
.SECONDARY: post-build | ||
|
||
-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
Oops, something went wrong.