sbsv2/raptor/lib/flm/user/default.flm_ex
author timothy.murphy@nokia.com
Tue, 20 Apr 2010 18:58:43 +0100
branchfix
changeset 529 b74730c98ccc
parent 3 e1eecf4d390d
permissions -rw-r--r--
improve resource copying speed on certain clustered build systems by forcing them to happen locally.

# Copyright (c) Symbian Software Ltd 2008-2009.
#
# Description:
# This is an example file.
# If it exists, the file default.flm in this directory is automatically
# included by $(SBS_HOME)/lib/flm/config/default.flm
# This allows end-users to "drop in" a file which adds to the default
# behaviour (or overrides it) rather than editing the shipped .flm file.
# default.flm contains things which require one instance per configuration.
# For example, dependencies in the epoc32 tree (which need the $(EPOCROOT)
# variable) and recipes to make things not specified in a bld.inf file.
#


# an example dependency - the script my.pl uses the rcomp tool

$(EPOCROOT)/epoc32/tools/my.pl:	$(EPOCROOT)/epoc32/tools/rcomp$(DOTEXE)


# an example recipe - run an accounting script after the binaries are made

FINAL::
	python $(EPOCROOT)/epoc32/tools/my_account.py $(EPOCROOT) $(PLATFORM)


# end of example file