equal
deleted
inserted
replaced
|
1 # Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 # All rights reserved. |
|
3 # This component and the accompanying materials are made available |
|
4 # under the terms of the License "Symbian Foundation License v1.0" |
|
5 # which accompanies this distribution, and is available |
|
6 # at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html". |
|
7 # |
|
8 # Initial Contributors: |
|
9 # Nokia Corporation - initial contribution. |
|
10 # |
|
11 # Contributors: |
|
12 # |
|
13 # Description: |
|
14 # |
|
15 |
|
16 include ../GNUmakefile.inc |
|
17 SUBDIRS= tcertapp |
|
18 |
|
19 INC=-I../store-- -I../utils -I../api -I. |
|
20 |
|
21 ALLSRCS= |
|
22 ALLOBJS=$(ALLSRCS:.cpp=.o) |
|
23 DEPENDFILES=$(ALLSRCS:.cpp=.d) |
|
24 |
|
25 .PHONY:targets |
|
26 targets: $(SUBDIRS) |
|
27 |
|
28 $(SUBDIRS) : % : force |
|
29 $(MAKE) -C $@ $@ |
|
30 |
|
31 $(TOPTARGETSNORUN): % : |
|
32 $(MAKE) -C.. $@ |
|
33 |
|
34 |
|
35 .PHONY: clean |
|
36 clean: |
|
37 -rm -f $(TCERT_TARGET) $(TAPI_TARGET) $(ALLOBJS) $(DEPENDFILES) |
|
38 for d in $(SUBDIRS) ; do make -C $$d clean ; done |
|
39 |
|
40 include $(wildcard $(DEPENDFILES)) |