author | Gareth Stockwell <gareth.stockwell@accenture.com> |
Wed, 22 Sep 2010 17:06:27 +0100 | |
branch | graphics-phase-3 |
changeset 112 | b6c206049d8a |
permissions | -rw-r--r-- |
112
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
1 |
# Copyright (c) 2010 Symbian Foundation. |
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
2 |
# All rights reserved. |
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
3 |
# This component and the accompanying materials are made available |
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
4 |
# under the terms of the License "Eclipse Public License v1.0" |
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
5 |
# which accompanies this distribution, and is available |
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
6 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html". |
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
7 |
# |
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
8 |
# Initial Contributors: |
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
9 |
# Mike Kinghan, mikek@symbian.org, for Symbian Foundation - Initial contribution |
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
10 |
# |
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
11 |
# Description: |
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
12 |
# Toplevel Makefile to build libnvmemmory.so in either debug or release mode |
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
13 |
|
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
14 |
.phony: all clean install distclean |
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
15 |
|
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
16 |
|
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
17 |
# Ensure DEBUG_LIBS is defined to make a debug build |
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
18 |
ifneq ($(DEBUG_LIBS),) |
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
19 |
build_dir=Debug |
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
20 |
else |
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
21 |
build_dir=Release |
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
22 |
endif |
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
23 |
|
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
24 |
all clean install distclean: |
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
25 |
$(MAKE) -C $(build_dir) $@ -f ../target.mak |
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
26 |
|
b6c206049d8a
Copied NVM model library code from default branch
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff
changeset
|
27 |