summaryrefslogtreecommitdiff
path: root/build/unix/make/buildtools-winscw
blob: 4a2b6bc33bbc2f051d19af284c3a995ae4b8302b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Definitions for build tools for the makefile used by the UQM build system.
# This file defines the build commands for Nokia CodeWarrior tools.

include build/unix/make/buildtools-generic

define act_mkdep_c
	$(MKDEP_C) $(CFLAGS) "$<" -o "$@.tmp"
	@echo -n "$(@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