2023-10-31 11:04:27 +08:00
|
|
|
################################################################################
|
|
|
|
# Automatically-generated file. Do not edit!
|
|
|
|
################################################################################
|
|
|
|
|
2023-11-16 15:30:56 +08:00
|
|
|
-include makefile.init
|
2023-10-31 11:04:27 +08:00
|
|
|
|
|
|
|
RM := find . -path './build' -prune -o -print -a -type f -not -name '*.mk' -a -not -name '*.ld' -a -not -name 'makefile' -a -not -name 'genhex.sh' -delete & rm -rf
|
|
|
|
|
|
|
|
# All of the sources participating in the build are defined here
|
2023-11-16 15:30:56 +08:00
|
|
|
-include ./obj/subdir.mk
|
2023-10-31 11:04:27 +08:00
|
|
|
|
|
|
|
ifneq ($(MAKECMDGOALS),clean)
|
|
|
|
ifneq ($(strip $(C_DEPS)),)
|
|
|
|
-include $(C_DEPS)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
# Add inputs and outputs from these tool invocations to the build variables
|
|
|
|
|
|
|
|
# All Target
|
2023-11-16 15:30:56 +08:00
|
|
|
all: libinterrupt.a
|
2023-10-31 11:04:27 +08:00
|
|
|
|
|
|
|
# Tool invocations
|
2023-11-16 15:30:56 +08:00
|
|
|
libinterrupt.a: $(OBJS)
|
2023-10-31 11:04:27 +08:00
|
|
|
@echo 'Building target: $@'
|
|
|
|
@echo 'Invoking: GNU archiver'
|
2023-11-16 15:30:56 +08:00
|
|
|
ar rcs "./lib/libinterrupt.a" $(USER_OBJS) $(OBJS) $(LIBS)
|
2023-10-31 11:04:27 +08:00
|
|
|
@echo 'Finished building target: $@'
|
|
|
|
@echo ' '
|
|
|
|
|
|
|
|
# Other Targets
|
|
|
|
clean:
|
2023-11-16 15:30:56 +08:00
|
|
|
-$(RM) $(LIB)$(OBJS)$(C_DEPS) libinterrupt.a
|
2023-10-31 11:04:27 +08:00
|
|
|
-@echo ' '
|
|
|
|
|
|
|
|
.PHONY: all clean dependents
|