summaryrefslogtreecommitdiff
path: root/build/unix/make/buildtools-armv5
diff options
context:
space:
mode:
Diffstat (limited to 'build/unix/make/buildtools-armv5')
-rw-r--r--build/unix/make/buildtools-armv517
1 files changed, 17 insertions, 0 deletions
diff --git a/build/unix/make/buildtools-armv5 b/build/unix/make/buildtools-armv5
new file mode 100644
index 0000000..bf73689
--- /dev/null
+++ b/build/unix/make/buildtools-armv5
@@ -0,0 +1,17 @@
+# Definitions for build tools for the makefile used by the UQM build system.
+# This file defines the build commands for ARM tools.
+
+include build/unix/make/buildtools-generic
+
+define act_mkdep_c
+ $(MKDEP_C) $(CFLAGS) -o "$(@D)/$(<F).o" "$<" --depend "$@"
+endef
+
+define act_mkdep_cxx
+ $(MKDEP_CXX) $(CXXFLAGS) -o "$(@D)/$(<F).o" "$<" --depend "$@"
+endef
+
+define act_link
+ $(LINK) --create "$@" $^ $(LDFLAGS)
+endef
+