symbian-qemu-0.9.1-12/model-libraries/Makefile
branchGCC_SURGE
changeset 94 c5cd29a4600d
child 114 19c4533e1567
equal deleted inserted replaced
93:07b904f40417 94:c5cd29a4600d
       
     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 # Makefile to build all available model libraries.
       
    13 
       
    14 .phony: all clean install distclean
       
    15 
       
    16 # Append new model library dirs here.
       
    17 subdirs := nvmemmory
       
    18 
       
    19 all clean install distclean:
       
    20 	for d in $(subdirs); do $(MAKE) -C $$d $@; done
       
    21