summaryrefslogtreecommitdiff
path: root/rules/c-objs.mk
diff options
context:
space:
mode:
Diffstat (limited to 'rules/c-objs.mk')
-rw-r--r--rules/c-objs.mk5
1 files changed, 5 insertions, 0 deletions
diff --git a/rules/c-objs.mk b/rules/c-objs.mk
new file mode 100644
index 0000000000..b8514b6d60
--- /dev/null
+++ b/rules/c-objs.mk
@@ -0,0 +1,5 @@
+define c-objs # args: $1 = dir, $2 = distdir
+# C and S files are built only once, not once per way
+$1_$2_C_OBJS = $$(patsubst %.c,$1/$2/build/%.$$(v_osuf),$$($1_$2_C_SRCS))
+$1_$2_S_OBJS = $$(patsubst %.S,$1/$2/build/%.$$(v_osuf),$$($1_$2_S_SRCS))
+endef