equal
deleted
inserted
replaced
|
1 # |
|
2 # Copyright (c) 2002 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 # Extracts the zip files located under \s60\Bitmaps2 |
|
16 # |
|
17 |
|
18 # NOT USED ANYMORE, extracting happens in export phase. |
|
19 |
|
20 # I had to use forward slash / instead of back slash \. |
|
21 # Back slash didn't work because it resulted in |
|
22 # \s60\Bitmaps2\data*.zip which break the whole unzip process |
|
23 CONFIGURE : |
|
24 @unzip -o -qq ../data/*.zip -d .. |
|
25 |
|
26 @if not exist "\epoc32" md "\epoc32" |
|
27 @if not exist "\epoc32\s60" md "\epoc32\s60" |
|
28 @if not exist "\epoc32\s60\bitmaps" md "\epoc32\s60\bitmaps" |
|
29 unzip -o -qq ../data/*.zip -d \epoc32\s60\bitmaps |
|
30 |
|
31 do_nothing : |
|
32 @rem do_nothing |
|
33 |
|
34 # |
|
35 # The targets invoked by bld... |
|
36 # |
|
37 |
|
38 MAKMAKE : do_nothing |
|
39 |
|
40 FINAL : do_nothing |
|
41 |
|
42 BLD : do_nothing |
|
43 |
|
44 SAVESPACE : do_nothing |
|
45 |
|
46 RESOURCE : CONFIGURE |
|
47 |
|
48 CLEAN : do_nothing |
|
49 |
|
50 FREEZE : do_nothing |
|
51 |
|
52 LIB : do_nothing |
|
53 |
|
54 CLEANLIB : do_nothing |
|
55 |
|
56 RELEASABLES : do_nothing |
|
57 |