equal
deleted
inserted
replaced
1 # Copyright (c) 2010 Symbian Foundation. |
|
2 # All rights reserved. |
|
3 # This component and the accompanying materials are made available |
|
4 # under the terms of the License "Eclipse Public License v1.0" |
|
5 # which accompanies this distribution, and is available |
|
6 # at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 # |
|
8 # Initial Contributors: |
|
9 # Mike Kinghan, mikek@symbian.org, for Symbian Foundation - Initial contribution |
|
10 # |
|
11 # Description: |
|
12 # Toplevel Makefile to build libnvmemmory.so in either debug or release mode |
|
13 |
|
14 .phony: all clean install distclean |
|
15 |
|
16 |
|
17 # Ensure DEBUG_LIBS is defined to make a debug build |
|
18 ifneq ($(DEBUG_LIBS),) |
|
19 build_dir=Debug |
|
20 else |
|
21 build_dir=Release |
|
22 endif |
|
23 |
|
24 all clean install distclean: |
|
25 $(MAKE) -C $(build_dir) $@ -f ../target.mak |
|
26 |
|
27 |
|