summaryrefslogtreecommitdiff
path: root/build/unix/make/buildtools-armv5
blob: bf7368929428c52966518ca8a440ff4e7a3844d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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