equal
deleted
inserted
replaced
|
1 # |
|
2 # Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 # All rights reserved. |
|
4 # This component and the accompanying materials are made available |
|
5 # under the terms of "Eclipse Public License v1.0" |
|
6 # which accompanies this distribution, and is available |
|
7 # at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 # |
|
9 # Initial Contributors: |
|
10 # Nokia Corporation - initial contribution. |
|
11 # |
|
12 # Contributors: |
|
13 # |
|
14 # Description: |
|
15 # |
|
16 |
|
17 |
|
18 # Define location for the parameter file |
|
19 PARAMFILE=$(VECTORINTERMEDIATEDIR)$/mifconv-$(notdir $(TARGETFILE))-params.txt |
|
20 |
|
21 # Set file-extension to .mif |
|
22 TARGETFILE:=$(addsuffix .mif,$(basename $(TARGETFILE))) |
|
23 |
|
24 # Set default directory for TARGETFILE if no diretory set |
|
25 ifeq ($(strip $(dir $(TARGETFILE))),./) |
|
26 TARGETFILE:=$(addprefix $(firstword $($(PLATFORM)_TARGETDIR) $(TARGETDIR))$/,$(TARGETFILE)) |
|
27 endif |
|
28 |
|
29 # Set default directory for HEADERFILE if no directory set |
|
30 ifeq ($(strip $(dir $(HEADERFILE))),./) |
|
31 HEADERFILE:=$(addprefix $(HEADERDIR)$/,$(HEADERFILE)) |
|
32 endif |