diff -r 000000000000 -r 83f4b4db085c toolsandutils/buildsystem/extension/syslibs/test/ecom3_buildsis.mk --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/toolsandutils/buildsystem/extension/syslibs/test/ecom3_buildsis.mk Tue Feb 02 01:39:43 2010 +0200 @@ -0,0 +1,60 @@ +# Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). +# All rights reserved. +# This component and the accompanying materials are made available +# under the terms of "Eclipse Public License v1.0" +# which accompanies this distribution, and is available +# at the URL "http://www.eclipse.org/legal/epl-v10.html". +# +# Initial Contributors: +# Nokia Corporation - initial contribution. +# +# Contributors: +# +# Description: +# Params: +# SOURCES - list of .pkg files +# TARGET - not used +# OPTION OUTDIR - mandatory, it is tef_ecomswi +# OPTION INDIR - mandatory, path relative to bld.inf containing the +# .pkg files. +# OPTION CERTPEM - mandatory +# OPTION CERTKEY - mandatory +# OPTION STUBLIST - mandatory, identify stubs in $(SOURCES) +# OPTION SCRIPTNAME - mandatory, perl script to build SIS. Must be in +# same dir as .pkg files. +# +# + +TMPROOT:=$(subst \,/,$(EPOCROOT)) +EPOCROOT:=$(patsubst %/,%,$(TMPROOT))/ + + +include $(EPOCROOT)epoc32/tools/shell/$(notdir $(basename $(SHELL))).mk + +CERTPEM := $(subst /,$(/),$(CERTPEM)) +CERTKEY := $(subst /,$(/),$(CERTKEY)) +OUTDIR := $(subst /,$(/),$(OUTDIR)) +INDIR := $(subst /,$(/),$(INDIR)) +BASEDIR := $(EXTENSION_ROOT)/$(INDIR) + +TARGETS := $(shell perl $(BASEDIR)/$(SCRIPTNAME) -platform $(PLATFORM_PATH) -cfg $(CFG_PATH) -outdir $(OUTDIR) -maketrgt RELEASABLES -sources "$(SOURCES)" -stublist "$(STUBLIST)") +EXTRA := $(shell perl $(BASEDIR)/$(SCRIPTNAME) -platform $(PLATFORM_PATH) -cfg $(CFG_PATH) -outdir $(OUTDIR) -maketrgt EXTRATARGET -sources "$(SOURCES)" -stublist "$(STUBLIST)") + + +$(TARGETS) : + @perl $(call slash2generic, $(BASEDIR)/$(SCRIPTNAME)) -basedir $(BASEDIR) -platform $(PLATFORM_PATH) -cfg $(CFG_PATH) -certpem $(CERTPEM) -certkey $(CERTKEY) -maketrgt FINAL $@ + +# +# The targets invoked by abld... +# +FINAL : $(TARGETS) + +BLD MAKMAKE SAVESPACE FREEZE LIB CLEANLIB RESOURCE : + @echo do nothing + +CLEAN : + -$(ERASE) $(TARGETS) $(EXTRA) + +RELEASABLES : + @echo $(TARGETS) $(EXTRA) +