sbsv2/raptor/util/talon.mk
changeset 625 a1925fb7753a
equal deleted inserted replaced
624:f70b728ea30c 625:a1925fb7753a
       
     1 # Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies).
       
     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 # Nokia Corporation - initial contribution.
       
    10 #
       
    11 # Contributors:
       
    12 #
       
    13 # Description:
       
    14 # Utility makefile 
       
    15 #
       
    16 #
       
    17 
       
    18 
       
    19 SHELL:=bash
       
    20 
       
    21 include $(SBS_HOME:\=/)/util/gccprogram.mk
       
    22 
       
    23 ifeq ($(filter win,$(HOSTPLATFORM)),win)
       
    24 CHOMP_C:=chomp.c
       
    25 PROCESS_C:=process_win.c
       
    26 CFLAGS:=-DHOST_WIN
       
    27 ifeq ($(SBS_MINGW),)
       
    28 LDFLAGS:=$(subst \,/,$(SBS_HOME:\=/)\win32\mingw\lib\libiberty.a)
       
    29 else
       
    30 LDFLAGS:=$(subst \,/,$(SBS_MINGW:\=/)\lib\libiberty.a)
       
    31 endif
       
    32 LDFLAGS:=$(LDFLAGS) -Wl,-lws2_32
       
    33 else
       
    34 CHOMP_C:=
       
    35 PROCESS_C:=process.c
       
    36 CFLAGS:=-g
       
    37 linux_PTHREADLIBS:=-lpthread
       
    38 LDFLAGS:=$(linux_PTHREADLIBS) -lrt
       
    39 endif
       
    40 
       
    41 
       
    42 SOURCEDIR:=$(subst \,/,$(SBS_HOME))/util/talon
       
    43 
       
    44 
       
    45 # remember how to clean up:
       
    46 MANIFEST:=$(SOURCEDIR)/manifest
       
    47 
       
    48 TARGET:=talon
       
    49 SOURCES:=$(addprefix $(SOURCEDIR)/,talon.c buffer.c sema.c log.c $(PROCESS_C) $(CHOMP_C)) 
       
    50 $(eval $(cprogram))
       
    51 
       
    52 TARGET:=talonctl
       
    53 SOURCES:=$(addprefix $(SOURCEDIR)/,talonctl.c sema.c log.c)
       
    54 $(eval $(cprogram))
       
    55 
       
    56 TARGET:=testbuffer
       
    57 SOURCES:=$(addprefix $(SOURCEDIR)/,testbuffer.c buffer.c log.c)
       
    58 $(eval $(cprogram))
       
    59 
       
    60 TARGET:=testprocess
       
    61 SOURCES:=$(addprefix $(SOURCEDIR)/,testprocess.c buffer.c log.c  $(PROCESS_C))
       
    62 $(eval $(cprogram))
       
    63 
       
    64 TARGET:=talonlock
       
    65 SOURCES:=$(addprefix $(SOURCEDIR)/,lock.c sema.c log.c)
       
    66 $(eval $(cprogram))
       
    67 
       
    68 TARGET:=testchomp
       
    69 SOURCES:=$(addprefix $(SOURCEDIR)/,testchomp.c chomp.c log.c)
       
    70 $(eval $(cprogram))
       
    71