23 lines
648 B
Makefile
23 lines
648 B
Makefile
################################################################################
|
|
# Automatically-generated file. Do not edit!
|
|
################################################################################
|
|
|
|
# Add inputs and outputs from these tool invocations to the build variables
|
|
S_SRCS += \
|
|
../src/main.s
|
|
|
|
OBJS += \
|
|
./src/main.o
|
|
|
|
|
|
# Each subdirectory must supply rules for building sources it contributes
|
|
src/%.o: ../src/%.s
|
|
@echo 'Building file: $<'
|
|
@echo 'Invoking: MCU GCC Assembler'
|
|
@echo $(PWD)
|
|
arm-none-eabi-as -mcpu=cortex-m4 -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16 -g -o "$@" "$<"
|
|
@echo 'Finished building: $<'
|
|
@echo ' '
|
|
|
|
|