diff options
author | Takeshi ISHII <2170248+mtei@users.noreply.github.com> | 2019-04-23 03:20:13 +0900 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-04-22 11:20:13 -0700 |
commit | 6d73fe12779d6e8527d404572810ea95e714dce7 (patch) | |
tree | 9b08909cebf38f06f42e6c6a852880b67e5b5399 /tmk_core/rules.mk | |
parent | bb52119a6dfe9c6f0314d1bcd948efda59626a70 (diff) |
fix LIB_SRC and QUANTUM_LIB_SRC for ARM (#5623)
* fix LIB_SRC and QUANTUM_LIB_SRC for ARM(chibios)
* remove ARFLAGS
* tmk_core/arm_atsam.mk:AR: remove 'rcs'
Diffstat (limited to 'tmk_core/rules.mk')
-rw-r--r-- | tmk_core/rules.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/rules.mk b/tmk_core/rules.mk index 3a322cee4f..6d2bb51f07 100644 --- a/tmk_core/rules.mk +++ b/tmk_core/rules.mk @@ -331,7 +331,7 @@ $1/%.o : %.S $1/asflags.txt $1/compiler.txt | $(BEGIN) $1/%.a : $1/%.o @mkdir -p $$(@D) @$(SILENT) || printf "Archiving: $$<" | $$(AWK_CMD) - $$(eval CMD=$$(AR) $$@ $$<) + $$(eval CMD=$$(AR) rcs $$@ $$<) @$$(BUILD_CMD) $1/force: |