summaryrefslogtreecommitdiff
path: root/lib/arm_support/arm_support.make
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arm_support/arm_support.make')
-rw-r--r--lib/arm_support/arm_support.make17
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/arm_support/arm_support.make b/lib/arm_support/arm_support.make
new file mode 100644
index 0000000000..0f6f7683b4
--- /dev/null
+++ b/lib/arm_support/arm_support.make
@@ -0,0 +1,17 @@
1# __________ __ ___.
2# Open \______ \ ____ ____ | | _\_ |__ _______ ___
3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6# \/ \/ \/ \/ \/
7#
8
9ARMSUPPORT_DIR = $(ROOTDIR)/lib/arm_support
10ARMSUPPORT_SRC = $(ARMSUPPORT_DIR)/support-arm.S
11ARMSUPPORT_OBJ := $(call c2obj, $(ARMSUPPORT_SRC))
12
13OTHER_SRC += $(ARMSUPPORT_SRC)
14
15$(LIBARMSUPPORT): $(ARMSUPPORT_OBJ)
16 $(SILENT)$(shell rm -f $@)
17 $(call PRINTS,AR $(@F))$(AR) rcs $@ $^ >/dev/null