os/ossrv/lowlevellibsandfws/apputils/group/bafl_copytestfiles.mk
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 # Copyright (c) 2007-2009 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 "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 # Copy test files to test sortbytable functionality.
    15 # 
    16 #
    17 
    18 TMPROOT:=$(subst \,/,$(EPOCROOT))
    19 EPOCROOT:=$(patsubst %/,%,$(TMPROOT))/
    20 include $(EPOCROOT)epoc32/tools/shell/$(notdir $(basename $(SHELL))).mk
    21 
    22 ifeq ($(findstring WINS,$(PLATFORM)),WINS)
    23 EPOCDATADIR=$(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)
    24 else
    25 EPOCDATADIR=$(EPOCROOT)epoc32/data
    26 endif
    27 
    28 TARGETDIR=$(EPOCDATADIR)/z/system/documents/baflsortbytabletest
    29 SOURCEDIR=$(EXTENSION_ROOT)/../tsrc
    30 	
    31 COPYFILES :
    32 	$(CP) -f $(call slash2generic,$(SOURCEDIR)/ADDCERT.RSC $(TARGETDIR)/addcert.rsc)
    33 	$(CP) -f $(call slash2generic,$(SOURCEDIR)/HELP.RSC $(TARGETDIR)/help.rsc)
    34 	$(CP) -f $(call slash2generic,$(SOURCEDIR)/MSGEDITOR.RSC $(TARGETDIR)/msgeditor.rsc)
    35 	$(CP) -f $(call slash2generic,$(SOURCEDIR)/SMLPROGRESS.RSC $(TARGETDIR)/smlprogress.rsc)
    36 
    37 $(TARGETDIR) :
    38 	$(call createdir,"$@")
    39 	
    40 DO_NOTHING :
    41 	@echo do nothing
    42 	
    43 #
    44 # The targets invoked by bld...
    45 #
    46 
    47 BLD : $(TARGETDIR) COPYFILES
    48 
    49 CLEAN :  
    50 	-$(ERASE) $(call slash2generic,$(TARGETDIR)/addcert.rsc)
    51 	-$(ERASE) $(call slash2generic,$(TARGETDIR)/help.rsc)
    52 	-$(ERASE) $(call slash2generic,$(TARGETDIR)/msgeditor.rsc)
    53 	-$(ERASE) $(call slash2generic,$(TARGETDIR)/smlprogress.rsc)
    54 	
    55 RELEASABLES :
    56 	@echo $(TARGETDIR)/addcert.rsc
    57 	@echo $(TARGETDIR)/help.rsc
    58 	@echo $(TARGETDIR)/msgeditor.rsc
    59 	@echo $(TARGETDIR)/smlprogress.rsc
    60  
    61 MAKMAKE : DO_NOTHING
    62 
    63 SAVESPACE : DO_NOTHING
    64 
    65 RESOURCE : DO_NOTHING
    66 
    67 FREEZE : DO_NOTHING
    68 
    69 LIB : DO_NOTHING
    70 
    71 CLEANLIB : DO_NOTHING
    72 
    73 FINAL : DO_NOTHING