From 7f6002caba3f0a6749820c2772161caf55b8d267 Mon Sep 17 00:00:00 2001 From: neonloop Date: Fri, 7 May 2021 20:00:12 +0000 Subject: Initial commit (uqm-0.8.0) --- build/unix/make/buildtools-armv5 | 17 +++++++++++++++++ build/unix/make/buildtools-gcce | 8 ++++++++ build/unix/make/buildtools-generic | 36 ++++++++++++++++++++++++++++++++++++ build/unix/make/buildtools-winscw | 19 +++++++++++++++++++ 4 files changed, 80 insertions(+) create mode 100644 build/unix/make/buildtools-armv5 create mode 100644 build/unix/make/buildtools-gcce create mode 100644 build/unix/make/buildtools-generic create mode 100644 build/unix/make/buildtools-winscw (limited to 'build/unix/make') 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)/$( $@ + @cat "$@.tmp" >> $@ + @rm -f "$@.tmp" +endef + +define act_mkdep_cxx + $(MKDEP_C) $(CXXFLAGS) "$<" -o "$@.tmp" + @echo -n "$(@D)/" > $@ + @cat "$@.tmp" >> $@ + @rm -f "$@.tmp" +endef + -- cgit v1.2.3