Files
cobm/sc2/build/unix/make/buildtools-winscw
Meep-Eep fc18eebd15 Add C++ support to the build system, from Scott A. Colcord.
git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3747 8092fc87-c524-0410-9efc-e669fe64eaf9
2012-01-15 20:01:20 +00:00

20 lines
448 B
Plaintext

# 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