32 lines
766 B
Makefile
32 lines
766 B
Makefile
################################################################################
|
|
# Automatically-generated file. Do not edit!
|
|
################################################################################
|
|
|
|
# Add inputs and outputs from these tool invocations to the build variables
|
|
C_SRCS += \
|
|
../aes/aes.c
|
|
|
|
C_DEPS += \
|
|
./aes/aes.d
|
|
|
|
OBJS += \
|
|
./aes/aes.o
|
|
|
|
|
|
# Each subdirectory must supply rules for building sources it contributes
|
|
aes/%.o: ../aes/%.c aes/subdir.mk
|
|
@echo 'Building file: $<'
|
|
@echo 'Invoking: Cross GCC Compiler'
|
|
arm-linux-gnueabihf-gcc -O0 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" -o "$@" "$<"
|
|
@echo 'Finished building: $<'
|
|
@echo ' '
|
|
|
|
|
|
clean: clean-aes
|
|
|
|
clean-aes:
|
|
-$(RM) ./aes/aes.d ./aes/aes.o
|
|
|
|
.PHONY: clean-aes
|
|
|