os/ossrv/lowlevellibsandfws/apputils/group/bafl_copytestfiles.mk
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/group/bafl_copytestfiles.mk	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,73 @@
     1.4 +# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +# All rights reserved.
     1.6 +# This component and the accompanying materials are made available
     1.7 +# under the terms of "Eclipse Public License v1.0"
     1.8 +# which accompanies this distribution, and is available
     1.9 +# at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +#
    1.11 +# Initial Contributors:
    1.12 +# Nokia Corporation - initial contribution.
    1.13 +#
    1.14 +# Contributors:
    1.15 +#
    1.16 +# Description:
    1.17 +# Copy test files to test sortbytable functionality.
    1.18 +# 
    1.19 +#
    1.20 +
    1.21 +TMPROOT:=$(subst \,/,$(EPOCROOT))
    1.22 +EPOCROOT:=$(patsubst %/,%,$(TMPROOT))/
    1.23 +include $(EPOCROOT)epoc32/tools/shell/$(notdir $(basename $(SHELL))).mk
    1.24 +
    1.25 +ifeq ($(findstring WINS,$(PLATFORM)),WINS)
    1.26 +EPOCDATADIR=$(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)
    1.27 +else
    1.28 +EPOCDATADIR=$(EPOCROOT)epoc32/data
    1.29 +endif
    1.30 +
    1.31 +TARGETDIR=$(EPOCDATADIR)/z/system/documents/baflsortbytabletest
    1.32 +SOURCEDIR=$(EXTENSION_ROOT)/../tsrc
    1.33 +	
    1.34 +COPYFILES :
    1.35 +	$(CP) -f $(call slash2generic,$(SOURCEDIR)/ADDCERT.RSC $(TARGETDIR)/addcert.rsc)
    1.36 +	$(CP) -f $(call slash2generic,$(SOURCEDIR)/HELP.RSC $(TARGETDIR)/help.rsc)
    1.37 +	$(CP) -f $(call slash2generic,$(SOURCEDIR)/MSGEDITOR.RSC $(TARGETDIR)/msgeditor.rsc)
    1.38 +	$(CP) -f $(call slash2generic,$(SOURCEDIR)/SMLPROGRESS.RSC $(TARGETDIR)/smlprogress.rsc)
    1.39 +
    1.40 +$(TARGETDIR) :
    1.41 +	$(call createdir,"$@")
    1.42 +	
    1.43 +DO_NOTHING :
    1.44 +	@echo do nothing
    1.45 +	
    1.46 +#
    1.47 +# The targets invoked by bld...
    1.48 +#
    1.49 +
    1.50 +BLD : $(TARGETDIR) COPYFILES
    1.51 +
    1.52 +CLEAN :  
    1.53 +	-$(ERASE) $(call slash2generic,$(TARGETDIR)/addcert.rsc)
    1.54 +	-$(ERASE) $(call slash2generic,$(TARGETDIR)/help.rsc)
    1.55 +	-$(ERASE) $(call slash2generic,$(TARGETDIR)/msgeditor.rsc)
    1.56 +	-$(ERASE) $(call slash2generic,$(TARGETDIR)/smlprogress.rsc)
    1.57 +	
    1.58 +RELEASABLES :
    1.59 +	@echo $(TARGETDIR)/addcert.rsc
    1.60 +	@echo $(TARGETDIR)/help.rsc
    1.61 +	@echo $(TARGETDIR)/msgeditor.rsc
    1.62 +	@echo $(TARGETDIR)/smlprogress.rsc
    1.63 + 
    1.64 +MAKMAKE : DO_NOTHING
    1.65 +
    1.66 +SAVESPACE : DO_NOTHING
    1.67 +
    1.68 +RESOURCE : DO_NOTHING
    1.69 +
    1.70 +FREEZE : DO_NOTHING
    1.71 +
    1.72 +LIB : DO_NOTHING
    1.73 +
    1.74 +CLEANLIB : DO_NOTHING
    1.75 +
    1.76 +FINAL : DO_NOTHING