javacommons/comms/subsystem.mk
branchRCL_3
changeset 14 04becd199f91
equal deleted inserted replaced
13:f5050f1da672 14:04becd199f91
       
     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 # Comms has different transport providers, e.g. socket or Symbian client/server.
       
    17 # Only one transport provider can be used at the time. 
       
    18 # Selection is done by uncommenting wanted transport provider below.
       
    19 
       
    20 
       
    21 include $(JAVA_SRC_ROOT)/build/Makefile.defs
       
    22 
       
    23 ifeq ($(BUILDENV),symbian)
       
    24 COMPONENTS = \
       
    25 	ipclib/clientserver/build
       
    26 #	ipclib/socket/build
       
    27 endif
       
    28 
       
    29 ifeq ($(BUILDENV),linux)
       
    30 COMPONENTS = \
       
    31 	ipclib/socket/build
       
    32 endif
       
    33 
       
    34 COMPONENTS += \
       
    35     build
       
    36 
       
    37 #ipclib/build is included only for exporting purposes!
       
    38 NONQTSUBSYSTEMS += \
       
    39     ipclib/build
       
    40 
       
    41 include ${JAVA_SRC_ROOT}/build/Makefile.subsystem
       
    42