toolsandutils/buildsystem/extension/syslibs/test/ecom3_buildsis.mk
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 02 Feb 2010 01:39:43 +0200
changeset 0 83f4b4db085c
child 1 d4b442d23379
permissions -rw-r--r--
Revision: 201005 Kit: 201005

# 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)