symbian-qemu-0.9.1-12/model-libraries/Makefile
author Gareth Stockwell <gareth.stockwell@accenture.com>
Wed, 22 Sep 2010 20:10:53 +0100
branchgraphics-phase-3
changeset 113 b842c0cb760e
parent 112 b6c206049d8a
child 114 19c4533e1567
permissions -rw-r--r--
Backed out changeset b6c206049d8a The nvmemmory library depends on a modification to qemu; this change is therefore backed out in order to allow NVM functionality to be merged into graphics-phase-3 by transplanting individual commits.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
109
ae83407e7b6a Added Makefile for building syborg-graphicswrapper using GCC
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff changeset
     1
# Copyright (c) 2010 Symbian Foundation.
ae83407e7b6a Added Makefile for building syborg-graphicswrapper using GCC
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff changeset
     2
# All rights reserved.
ae83407e7b6a Added Makefile for building syborg-graphicswrapper using GCC
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff changeset
     3
# This component and the accompanying materials are made available
ae83407e7b6a Added Makefile for building syborg-graphicswrapper using GCC
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff changeset
     4
# under the terms of the License "Eclipse Public License v1.0"
ae83407e7b6a Added Makefile for building syborg-graphicswrapper using GCC
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff changeset
     5
# which accompanies this distribution, and is available
ae83407e7b6a Added Makefile for building syborg-graphicswrapper using GCC
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff changeset
     6
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
ae83407e7b6a Added Makefile for building syborg-graphicswrapper using GCC
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff changeset
     7
#
ae83407e7b6a Added Makefile for building syborg-graphicswrapper using GCC
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff changeset
     8
# Initial Contributors:
ae83407e7b6a Added Makefile for building syborg-graphicswrapper using GCC
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff changeset
     9
# Mike Kinghan, mikek@symbian.org, for Symbian Foundation - Initial contribution
ae83407e7b6a Added Makefile for building syborg-graphicswrapper using GCC
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff changeset
    10
# 
ae83407e7b6a Added Makefile for building syborg-graphicswrapper using GCC
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff changeset
    11
# Description:
ae83407e7b6a Added Makefile for building syborg-graphicswrapper using GCC
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff changeset
    12
# Makefile to build all available model libraries.
ae83407e7b6a Added Makefile for building syborg-graphicswrapper using GCC
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff changeset
    13
ae83407e7b6a Added Makefile for building syborg-graphicswrapper using GCC
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff changeset
    14
.phony: all clean install distclean
ae83407e7b6a Added Makefile for building syborg-graphicswrapper using GCC
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff changeset
    15
ae83407e7b6a Added Makefile for building syborg-graphicswrapper using GCC
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff changeset
    16
# Append new model library dirs here.
113
b842c0cb760e Backed out changeset b6c206049d8a
Gareth Stockwell <gareth.stockwell@accenture.com>
parents: 112
diff changeset
    17
subdirs := syborg-graphicswrapper/
109
ae83407e7b6a Added Makefile for building syborg-graphicswrapper using GCC
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff changeset
    18
ae83407e7b6a Added Makefile for building syborg-graphicswrapper using GCC
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff changeset
    19
all clean install distclean:
ae83407e7b6a Added Makefile for building syborg-graphicswrapper using GCC
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff changeset
    20
	for d in $(subdirs); do $(MAKE) -C $$d $@; done
ae83407e7b6a Added Makefile for building syborg-graphicswrapper using GCC
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff changeset
    21