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 BUILD_XML_FILE = build.xml |
|
18 |
|
19 ifeq ($(CFG),UDEB) |
|
20 export VARIANT = debug |
|
21 else |
|
22 ifeq ($(CFG),udeb) |
|
23 export VARIANT = debug |
|
24 else |
|
25 export VARIANT = release |
|
26 endif |
|
27 endif |
|
28 |
|
29 ifeq ($(PLATFORM),WINSCW) |
|
30 export _PLATF_ = winscw |
|
31 else |
|
32 export _PLATF_ = armv5 |
|
33 endif |
|
34 |
|
35 ANTCALL = call ant -q -buildfile $(BUILD_XML_FILE) -Dtarget.platform=$(_PLATF_) -Dtarget.cfg=$(VARIANT) |
|
36 |
|
37 build_java : |
|
38 $(ANTCALL) |
|
39 |
|
40 FREEZE : |
|
41 rem do_nothing |
|
42 |
|
43 LIB : |
|
44 rem do_nothing |
|
45 |
|
46 MAKMAKE : |
|
47 echo $(CFG) |
|
48 |
|
49 RESOURCE : |
|
50 rem do_nothing |
|
51 |
|
52 BLD : build_java |
|
53 |
|
54 SAVESPACE : |
|
55 rem do_nothing |
|
56 |
|
57 FINAL : |
|
58 rem do_nothing |
|
59 |
|
60 CLEAN : |
|
61 $(ANTCALL) clean |
|
62 |
|
63 RELEASABLES : |
|
64 $(ANTCALL) -q releasables |