symbian-qemu-0.9.1-12/model-libraries/Makefile
author Gareth Stockwell <gareth.stockwell@accenture.com>
Tue, 14 Sep 2010 17:21:05 +0100
branchgraphics-phase-3
changeset 109 ae83407e7b6a
child 112 b6c206049d8a
permissions -rw-r--r--
Added Makefile for building syborg-graphicswrapper using GCC At present the build fails due to the following missing headers: KhronosAPIWrapper.h VirtualVideoInterfaceConstants.h platformthreading.h protocol_MGraphicsVHWCallback.h
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.
ae83407e7b6a Added Makefile for building syborg-graphicswrapper using GCC
Gareth Stockwell <gareth.stockwell@accenture.com>
parents:
diff changeset
    17
subdirs := syborg-graphicswrapper/
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