javamanager/javacaptain/subsystem.mk
changeset 21 2a9601315dfc
child 35 85266cc22c7f
child 60 6c158198356e
equal deleted inserted replaced
18:e8e63152f320 21:2a9601315dfc
       
     1 #
       
     2 # Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 # All rights reserved.
       
     4 # This component and the accompanying materials are made available
       
     5 # under the terms of "Eclipse Public License v1.0"
       
     6 # which accompanies this distribution, and is available
       
     7 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 #
       
     9 # Initial Contributors:
       
    10 # Nokia Corporation - initial contribution.
       
    11 #
       
    12 # Contributors:
       
    13 #
       
    14 # Description: 
       
    15 #
       
    16 
       
    17 include $(JAVA_SRC_ROOT)/build/Makefile.defs
       
    18 
       
    19 
       
    20 COMPONENTS = \
       
    21 	build \
       
    22     extensionplugins/config/build \
       
    23     extensionplugins/javacertstore/build \
       
    24     extensionplugins/storageserver/build \
       
    25     $(LINUX_ONLY)
       
    26 
       
    27 
       
    28 ALL_TARGETS = $(COMPONENTS) $(SUBSYSTEMS) $(NONQTSUBSYSTEMS)
       
    29 
       
    30 # Filter targets by platform
       
    31 ifeq ($(BUILDENV),symbian)
       
    32 ifdef RD_JAVA_S60_RELEASE_5_0_IAD
       
    33 NONQTSUBSYSTEMS = \
       
    34 	systemams/build
       
    35 endif
       
    36 
       
    37 COMPONENTS += extensionplugins/preinstallerstarter/build
       
    38 ifdef SYMBIAN_UNIVERSAL_INSTALL_FRAMEWORK
       
    39 COMPONENTS += extensionplugins/scrupdater/build
       
    40 endif
       
    41 SUBTARGETS = $(filter-out $(LINUX_ONLY), $(ALL_TARGETS))
       
    42 else
       
    43 SUBTARGETS = $(filter-out $(SYMBIAN_ONLY), $(ALL_TARGETS))
       
    44 endif
       
    45 
       
    46 include ${JAVA_SRC_ROOT}/build/Makefile.subsystem