--- a/deprecated/buildtools/buildsystem/extension/base/base_rvct_common.mk Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,69 +0,0 @@
-# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# Some functions that are commonly used by base FLM
-
-define base__compile
-$(1) : $(2) : $(3)
- $(call startrule,base__compile) \
- $(CC) $(ARMCCFLAGS) $$< -o $$@ \
- $(call endrule,base__compile)
-
-CLEANTARGETS := $(CLEANTARGETS) $(1)
-endef
-
-define base__h2inc
-$(1) : $(2)
- $(call startrule,base__h2inc) \
- $(PERL) $(EPOCROOT)/epoc32/tools/h2inc.pl $$< $$@ ARMASM \
- $(call endrule,base__h2inc)
-
-CLEANTARGETS := $(CLEANTARGETS) $(1)
-endef
-
-define base__asm
-$(1) : $(2) : $(3)
- $(call startrule,base__asm) \
- $(ASM) $(AFLAGS) -o $$@ --LIST $(join $(basename $(1)),.lst) $$< \
- $(call endrule,base__asm)
-
-CLEANTARGETS := $(CLEANTARGETS) $(1) $(join $(basename $(1)),.lst)
-endef
-
-define base__link
-$(1) : $(2)
- $(call startrule,base__link) \
- $(LD) $(LFLAGS) -o $$@ $(FULLOBJECTS) \
- $(call endrule,base__link)
-
-CLEANTARGETS := $(CLEANTARGETS) $(1)
-endef
-
-define base__strip
-$(1) : $(2)
- $(call startrule,base__strip) \
- $(FROMELF) --bin --output $$@ $$< \
- $(call endrule,base__strip)
-
-CLEANTARGETS := $(CLEANTARGETS) $(1)
-endef
-
-define base__omapsig
-$(1) : $(2)
- $(call startrule,base__omapsig) \
- $(PERL) $(EPOCROOT)/epoc32/tools/omapsig.pl $(LINKBASE) $$< $$@ \
- $(call endrule,base__omapsig)
-
-CLEANTARGETS := $(CLEANTARGETS) $(1)
-endef
-
--- a/deprecated/buildtools/buildsystem/extension/base/bootstrap.flm Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,195 +0,0 @@
-# Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-#
-
-ifeq ($($(NAME)_$(PLATFORM_PATH)_bootstrap_flm),)
-$(NAME)_$(PLATFORM_PATH)_bootstrap_flm := 1
-
-E32PATH := $(EXTENSION_ROOT)/$(E32PATH)
-SOURCES := $(foreach S,$(SOURCES),$(addprefix $(EXTENSION_ROOT)/,$(S)))
-INCLUDES2:=$(addprefix $(EXTENSION_ROOT)/,$(INCLUDES))
-EXTRA_INC_PATH := $(foreach S,$(EXTRA_INC_PATH),$(addprefix $(EXTENSION_ROOT)/,$(S)))
-GENINCLUDES_HEADERS := $(foreach H,$(GENINCLUDES_HEADERS),$(addprefix $(EXTENSION_ROOT)/,$(H)))
-
-ifndef LINKBASE
-LINKBASE := 0x00000000
-endif
-
-UNIQ:=$(E32PATH)$(PLATFORM_PATH)$(NAME)$(MEMMODEL)$(SOURCES)$(ASM_MACROS)
-UNIQ:=$(word 1,$(shell echo $(UNIQ) | $(GNUMD5SUM)))
-
-# Make the output build directory name unique, starting with NAME of the binary being built
-EPOCBLDABS := $(EPOCBLD)/$(NAME)_$(UNIQ)
-
-EPOCINC := $(EPOCROOT)/epoc32/include
-EPOCKERNINC := $(EPOCINC)/kernel
-EPOCCPUINC := $(EPOCKERNINC)/$(CPU)
-EPOCTRG := $(EPOCROOT)/epoc32/release/$(PLATFORM_PATH)
-TRG := $(EPOCTRG)/$(NAME).bin
-TEMPTRG := $(EPOCBLDABS)/$(NAME).bin
-ASMINCPATH :=
-ASM_MACROS :=
-CLEANTARGETS :=
-
-CLEANTARGETS := $(CLEANTARGETS) $(TRG) $(TEMPTRG) $(join $(basename $(TRG)),.sym)
-
-ifneq ($(EXTRA_INC_PATH),)
-ASMINCPATH := $(EXTRA_INC_PATH)
-endif
-
-ASMINCPATH := . $(EPOCBLDABS) $(ASMINCPATH) $(EXTENSION_ROOT) $(EPOCCPUINC) $(EXTRA_EPOC32_INC_PATH) $(E32PATH)/eka/include/kernel/$(CPU)
-
-ifeq ($(MEMMODEL),)
-$(error MEMMODEL parameter not specified)
-endif
-
-# Convert MEMMODEL parameter to lower case
-MEMMODEL := $(shell echo $(MEMMODEL) | tr A-Z a-z)
-
-ifeq ($(MEMMODEL),direct)
-CFG_MM := CFG_MMDirect
-HEADERS_MM :=
-endif
-ifeq ($(MEMMODEL),flexible)
-CFG_MM := CFG_MMFlexible
-HEADERS_MM := $(E32PATH)/eka/include/memmodel/epoc/flexible/$(CPU)/mmboot.h
-endif
-ifeq ($(MEMMODEL),moving)
-CFG_MM := CFG_MMMoving
-HEADERS_MM := $(E32PATH)/eka/include/memmodel/epoc/moving/$(CPU)/mmboot.h
-endif
-ifeq ($(MEMMODEL),multiple)
-CFG_MM := CFG_MMMultiple
-HEADERS_MM := $(E32PATH)/eka/include/memmodel/epoc/multiple/$(CPU)/mmboot.h
-endif
-ifndef CFG_MM
-$(error '$(MEMMODEL)' memory model unknown)
-endif
-
-ASM_MACROS := $(ASM_MACROS) $(CFG_MM)
-ifneq ($(SMP),)
-ASM_MACROS := $(ASM_MACROS) SMP
-endif
-
-ASMINCPATHCMD := $(foreach dir,$(ASMINCPATH),$(join -I ,$(dir)))
-ASM_MACROS := $(ASM_MACROS) USE_CXSF
-
-INCEXT := inc
-ASM_MACRO_CMD := $(foreach macro,$(ASM_MACROS),--predefine "$(macro) SETL {TRUE}")
-AFLAGS := -g --keep $(ASM_MACRO_CMD) $(ASMINCPATHCMD)
-LFLAGS := --ro-base $(LINKBASE) --entry $(LINKBASE) --map
-SYMOPT := --symdefs
-
-define bootstrap_asm
-$(1) : $(2) : $(3)
- $(call startrule,bootstrap_rvct_asm) \
- $(ASM) $(AFLAGS) -o $$@ --LIST $$(join $$(basename $$@),.lst) $$< \
- $(call endrule,bootstrap_rvct_asm)
-endef
-
-define bootstrap_link
-$(EPOCBLDABS)/$(NAME).in : $(LINKOBJECTS) $(LINKFILE) | $(EPOCBLDABS)
- $(call startrule,bootstrap_rvct_link) \
- $(LD) $(LFLAGS) $(SYMOPT) $$(join $$(basename $$@),.sym) -o $$@ $$(filter %.o,$$^); \
- $(GNUCP) $$@ $$(join $$(basename $(TRG)),.sym) \
- $(call endrule,bootstrap_rvct_link)
-endef
-
-define bootstrap_strip
-$(TRG) : $(EPOCBLDABS)/$(NAME).in
- $(call startrule,bootstrap_strip) \
- $(FROMELF) --bin --output $$@ $$< \
- $(call endrule,bootstrap_rvct_strip)
-endef
-
-define bootstrap_h2inc
-# How to translate the .h files to .inc
-$(1) : $(2)
- $(call startrule,bootstrap_h2inc) \
- $(PERL) $(EPOCROOT)/epoc32/tools/h2inc.pl $$< $$@ ARMASM \
- $(call endrule, bootsrap_h2inc)
-endef
-
-# Joins two lists with a 1:1 mapping, separated by a ->
-# $(call bootstrap_joinlists,a b c,d e f) returns a->d b->e c->f
-define bootstrap_joinlists
-$(join $(1),$(addprefix ->,$(2)))
-endef
-
-# Path for generic source files
-BASESRCPATH := $(E32PATH)/eka/kernel/$(CPU)
-
-# Generic source files
-BASESOURCES := $(foreach S,$(BASESOURCES_NAMES),$(addprefix $(BASESRCPATH)/,$(S)))
-
-HEADERS:= $(E32PATH)/eka/include/kernel/kernboot.h $(E32PATH)/eka/include/kernel/arm/bootdefs.h $(E32PATH)/eka/include/e32rom.h $(GENINCLUDES_HEADERS) $(HEADERS_MM)
-
-# Generated include files
-BOOTSTRAP_GENINCLUDES := $(foreach f,$(HEADERS),$(basename $(notdir $(f))).$(INCEXT))
-
-# Non-generated generic include files
-ifeq ($(BASEINCLUDES),)
-BASEINCLUDES := $(E32PATH)/eka/include/kernel/$(CPU)/bootcpu.inc $(E32PATH)/eka/include/kernel/$(CPU)/bootmacro.inc
-endif
-INCLUDES2 := $(foreach f,$(INCLUDES2),$(basename $(f)).$(INCEXT))
-
-# Generic object files
-FULLBASEOBJECTS := $(foreach src, $(BASESOURCES_NAMES), $(addprefix $(EPOCBLDABS)/,$(basename $(src)).o))
-
-# Platform specific object files
-FULLOBJECTS := $(foreach src, $(SOURCES), $(addprefix $(EPOCBLDABS)/,$(basename $(notdir $(src))).o))
-
-LINKOBJECTS := $(FULLBASEOBJECTS) $(FULLOBJECTS)
-
-# Generated include files with paths
-FULLGENINCLUDES := $(addprefix $(EPOCBLDABS)/,$(BOOTSTRAP_GENINCLUDES))
-
-CLEANTARGETS := $(CLEANTARGETS) $(FULLBASEOBJECTS) $(FULLOBJECTS) $(LINKOBJECTS) $(FULLGENINCLUDES)
-
-CLEANTARGETS := $(CLEANTARGETS) $(EPOCBLDABS)/$(NAME).in $(join $(basename $(EPOCBLDABS)/$(NAME).in),.sym)
-
-JOINED_INC := $(call bootstrap_joinlists,$(FULLGENINCLUDES),$(HEADERS))
-$(foreach J,$(JOINED_INC),$(eval $(call bootstrap_h2inc,$(word 1,$(subst ->, ,$(J))),$(word 2,$(subst ->, ,$(J))) | $(EPOCBLDABS))))
-
-# How to strip linked object to binary
-$(eval $(call bootstrap_strip,$(TRG),$(EPOCBLDABS)/$(NAME).in))
-
-LISTFILE := $(foreach f,$(FULLBASEOBJECTS),$(join $(basename $(f)),.lst)) $(foreach f,$(FULLOBJECTS),$(join $(basename $(f)),.lst))
-CLEANTARGETS := $(CLEANTARGETS) $(LISTFILE)
-
-JOINED_BASEOBJECTS := $(call bootstrap_joinlists,$(FULLBASEOBJECTS),$(BASESOURCES))
-
-$(foreach J,$(JOINED_BASEOBJECTS),$(eval $(call bootstrap_asm,$(word 1,$(subst ->, ,$(J))),$(EPOCBLDABS)/%.o,$(word 2,$(subst ->, ,$(J))) $(BASEINCLUDES) $(FULLGENINCLUDES) $(INCLUDES2) | $(EPOCBLDABS))))
-
-JOINED_OBJECTS := $(call bootstrap_joinlists,$(FULLOBJECTS),$(SOURCES))
-
-$(foreach J,$(JOINED_OBJECTS),$(eval $(call bootstrap_asm,$(word 1,$(subst ->, ,$(J))),$(EPOCBLDABS)/%.o,$(word 2,$(subst ->, ,$(J))) $(BASEINCLUDES) $(FULLGENINCLUDES) $(INCLUDES2) |$(EPOCBLDABS))))
-
-# How to link the object files
-$(eval $(bootstrap_link))
-
-# Hook into global targets
-TARGET :: $(TRG)
-
-#############################################
-
-# --what to show releasables
-$(eval $(call whatmacro,$(TRG),USERFLM))
-# create directory
-CREATABLEPATHS := $(EPOCBLDABS) $(EPOCTRG)
-$(call makepath,$(CREATABLEPATHS))
-# clean up
-$(eval $(call GenerateStandardCleanTarget,$(CLEANTARGETS),$(BUILDLOC)))
-
-endif
--- a/deprecated/buildtools/buildsystem/extension/base/bootstrap.meta Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,21 +0,0 @@
-# Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# Meta information for the boot strap extension template
-#
-
-platform win32
-makefile gnumake
-techstream base
-
-
--- a/deprecated/buildtools/buildsystem/extension/base/bootstrap.mk Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,391 +0,0 @@
-# Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-#
-
-# To ensure that EPOCROOT always ends with a forward slash.
-TMPROOT:=$(subst \,/,$(EPOCROOT))
-EPOCROOT:=$(patsubst %/,%,$(TMPROOT))/
-
-ifndef CPU
-CPU := arm
-endif
-
-ifndef LINKBASE
-LINKBASE := 0x00000000
-endif
-
-include $(EPOCROOT)epoc32/tools/shell/$(notdir $(basename $(SHELL))).mk
-
-PROCEED:=build
-ifneq "$(PBUILDPID)" ""
- ifneq "$(CFG)" "UREL"
- PROCEED:=skip
- endif
-endif
-
-COPY := $(call ecopy)
-
-ifeq "$(CPU)" "x86"
- ifeq "$(MEMMODEL)" "direct"
- BLDSGL:=s
- else
- ifeq "$(MEMMODEL)" "flexible"
- BLDSGL:=f
- else
- BLDSGL:=
- endif
- endif
- ifdef SMP
- BLDSMP:=smp
- else
- BLDSMP:=
- endif
- EPOCROOT:=$(subst /,\,$(EPOCROOT))
- EPOCBLDABS := $(EPOCROOT)epoc32\build\tasm$(PBUILDPID)\$(BLDSGL)$(VNAME)$(BLDSMP)
-else
- DRIVELETTER := $(shell cd 2>NUL)
- DRIVELETTER_2 := $(word 1,$(subst \, ,$(DRIVELETTER)))
- EPOCBLDABS_1 := $(subst $(TO_ROOT),,$(EPOCBLD))
- EPOCBLDABS_2 := $(subst $(DRIVELETTER_2),,$(EPOCBLDABS_1))
-
- EPOCBLDABS := $(call epocbldabs,$(DRIVELETTER_2),$(EPOCBLDABS_2))/$(NAME)
-endif
-
-EPOCINC := $(INC_PATH)
-EPOCKERNINC := $(EPOCINC)/kernel
-EPOCCPUINC := $(EPOCKERNINC)/$(CPU)
-EPOCMMINC := $(INC_PATH)/memmodel/epoc/$(MEMMODEL)/$(CPU)
-EPOCTRG := $(EPOCROOT)epoc32/release/$(PLATFORM_PATH)
-TRG := $(EPOCTRG)/$(NAME).bin
-TEMPTRG := $(EPOCBLDABS)/$(NAME).bin
-
-ifdef EXTRA_INC_PATH
-ASMINCPATH := $(EXTRA_INC_PATH)
-endif
-
-ifeq "$(CPU)" "arm"
-ASMINCPATH := . $(EPOCBLDABS) $(ASMINCPATH) $(EXTENSION_ROOT) $(EPOCCPUINC)
-ARMASM_OUT := $(shell armasm 2>&1)
-ARMASM_OUT_4 := $(word 4,$(ARMASM_OUT))
-ARMASM_OUT_6 := $(word 6,$(ARMASM_OUT))
-
-# Use GCC toolchain if no other is available
-TOOLVER := GCC
-
-RVCTSTR := $(strip $(findstring RVCT, $(ARMASM_OUT_4)))
-ifeq "$(RVCTSTR)" "RVCT"
- TOOLVER := RVCT
- OP := --
-endif
-ifeq "$(ARMASM_OUT_6)" "2.37"
- TOOLVER := 211
-endif
-endif
-
-ifeq "$(MEMMODEL)" "direct"
-CFG_MM := CFG_MMDirect
-endif
-ifeq "$(MEMMODEL)" "moving"
-CFG_MM := CFG_MMMoving
-endif
-ifeq "$(MEMMODEL)" "multiple"
-CFG_MM := CFG_MMMultiple
-endif
-ifeq "$(MEMMODEL)" "flexible"
-CFG_MM := CFG_MMFlexible
-endif
-ifndef CFG_MM
-$(error Memory model unknown)
-endif
-
-ASM_MACROS += $(CFG_MM)
-ifdef SMP
- ASM_MACROS += SMP
-endif
-
-ifeq "$(CPU)" "x86"
- ifndef BASEINCLUDES
- BASEINCLUDES := bootcpu.inc bootmacr.inc
- endif
- ifndef BASESOURCES
- BASESOURCES := bootmain.asm bootcpu.asm bootutil.asm
- endif
- GENINCLUDES := $(GENINCLUDES) x86boot.h
- ASMINCPATH := .
- ASM := tasm
- LINK := tlink
- EXE2BIN := exe2bin
- SRCEXT := asm
- INCEXT := inc
- OBJEXT := obj
- EXEEXT := exe
-
- ASMINCPATHCMD := $(foreach dir,$(ASMINCPATH),$(join /i,$(call slash2generic,$(dir))))
- ASM_MACRO_CMD := $(foreach macro,$(ASM_MACROS),/d$(macro)=1)
- AFLAGS := /l /m3 /ML /W-PDC $(ASM_MACRO_CMD) $(ASMINCPATHCMD)
- LFLAGS := /m /s /n /3 /c
- ASMTYP := TASM
- LINKFILE :=
- define do_asm
- cd $(EPOCBLDABS) && $(CP) $(call slash2generic,$<) .
- cd $(EPOCBLDABS) && $(ASM) $(AFLAGS) $(notdir $<)
- endef
- define do_link
- cd $(EPOCBLDABS) && $(LINK) $(LFLAGS) $(filter %.$(OBJEXT),$(foreach obj,$^,$(notdir $(obj)))), temp.exe
- cd $(EPOCBLDABS) && $(COPY) temp.exe $@
- cd $(EPOCBLDABS) && $(ERASE) temp.exe
- endef
- define do_strip
- cd $(EPOCBLDABS) && $(COPY) $< temp.exe
- cd $(EPOCBLDABS) && $(EXE2BIN) temp.exe temp.bin
- cd $(EPOCBLDABS) && $(COPY) temp.bin $@
- cd $(EPOCBLDABS) && $(ERASE) temp.exe temp.bin
- endef
-endif
-ifeq "$(CPU)" "arm"
- ifeq "$(TOOLVER)" "211"
- ASM := armasm
- LINK := armlink
- SRCEXT := s
- INCEXT := inc
- OBJEXT := o
- EXEEXT := in
- ASMINCPATHCMD := $(foreach dir,$(ASMINCPATH),$(join -I ,$(dir)))
- ASM_MACRO_CMD := $(foreach macro,$(ASM_MACROS),-predefine "$(macro) SETL {TRUE}")
- AFLAGS := $(ASM_ARM211_VARIANTFLAGS) -apcs 3/32bit/nosw -Length 0 -Width 200 $(ASM_MACRO_CMD) $(ASMINCPATHCMD)
- LFLAGS := -Base $(LINKBASE) -Data 0xf0000000 -Entry $(LINKBASE) -Bin -map
- SYMOPT := -symbols
- ASMTYP := ARMASM
- LINKFILE :=
- define do_asm
- $(ASM) $(AFLAGS) -o $@ -LIST $(join $(basename $@),.lst) $<
- endef
- define do_link
- $(LINK) $(LFLAGS) $(SYMOPT) $(join $(basename $@),.sym) -o $@ $(filter %.$(OBJEXT),$^)
- endef
- define do_strip
- @if exist $@ $(ERASE) $(call slash2generic,$@)
- $(COPY) $< $@
- endef
- endif
- ifeq "$(TOOLVER)" "RVCT"
- ASM_MACROS += USE_CXSF
- ASM := armasm
- LINK := armlink
- FROMELF := fromelf
- SRCEXT := s
- INCEXT := inc
- OBJEXT := o
- EXEEXT := in
- ASMINCPATHCMD := $(foreach dir,$(ASMINCPATH),$(join -I ,$(dir)))
- ASM_MACRO_CMD := $(foreach macro,$(ASM_MACROS),$(OP)predefine "$(macro) SETL {TRUE}")
- AFLAGS := -g $(OP)keep $(ASM_MACRO_CMD) $(ASMINCPATHCMD) $(ASM_RVCT_VARIANTFLAGS)
- LFLAGS := $(OP)ro-base $(LINKBASE) $(OP)entry $(LINKBASE) $(OP)map
- SYMOPT := $(OP)symdefs
- ASMTYP := ARMASM
- LINKFILE :=
- define do_asm
- $(ASM) $(AFLAGS) -o $@ $(OP)LIST $(join $(basename $@),.lst) $<
- endef
- define do_link
- $(LINK) $(LFLAGS) $(SYMOPT) $(join $(basename $@),.sym) -o $@ $(filter %.$(OBJEXT),$^)
- $(COPY) $@ $(join $(basename $(TRG)),.sym)
- endef
- define do_strip
- $(FROMELF) $(OP)bin $(OP)output $@ $<
- endef
- endif
- ifeq "$(TOOLVER)" "GCC"
- ASM_MACROS += USE_CXSF GNU_ASM
- ASM := as
- LINK := ld
- STRIP := strip
- SRCEXT := s
- INCEXT := ginc
- OBJEXT := o
- EXEEXT := in
- ASMINCPATHCMD := $(foreach dir,$(ASMINCPATH),$(join -I ,$(dir)))
- ASM_MACRO_CMD := $(foreach macro,$(ASM_MACROS),--defsym $(macro)=1 )
- AFLAGS := -mapcs-32 -R -n $(ASM_MACRO_CMD) -I- $(ASMINCPATHCMD)
- LFLAGS := -n -x --section-alignment 4 --file-alignment 2 -no-whole-archive
- SYMOPT := -symdefs
- ASMTYP := AS
- PROCESS_INCLUDES := 1
- ifndef LINKFILE
- LINKFILE := bootstrap.lnk
- endif
- define do_asm
- perl $(EPOCROOT)epoc32/tools/armasm2as.pl $< $(join $(basename $@),.ss)
- $(ASM) $(AFLAGS) -acdhlms=$(join $(basename $@),.lst) -o $@ $(join $(basename $@),.ss)
- endef
- define do_link
- if exist $(join $(basename $@),.lnk) $(ERASE) $(call slash2generic,$(join $(basename $@),.lnk))
- $(COPY) $(subst /,\,$(filter %.lnk,$^)) $(join $(basename $@),.lnk)
- $(LINK) -M -o $@ $(filter %.$(OBJEXT),$^) $(LFLAGS) --script=$(join $(basename $@),.lnk) >$(join $(basename $@),.map)
- endef
- define do_strip
- $(STRIP) -O binary -o $(TEMPTRG) $<
- $(COPY) $(TEMPTRG) $@
- $(ERASE) $(call slash2generic,$(TEMPTRG))
- endef
- endif
-endif
-
-
-
-# Generic source files
-ifndef BASESOURCES
-BASESOURCES := bootmain.s bootcpu.s bootutils.s
-endif
-
-# Path for generic source files
-ifndef BASESRCPATH
-BASESRCPATH := $(E32PATH)/eka/kernel/$(CPU)
-endif
-
-
-# Generated include files
-GENINCLUDES := $(foreach f,$(GENINCLUDES),$(basename $(f)).$(INCEXT))
-GENINCLUDES := $(GENINCLUDES) e32rom.$(INCEXT) kernboot.$(INCEXT)
-GENINCLUDES := $(GENINCLUDES) bootdefs.$(INCEXT)
-ifneq "$(MEMMODEL)" "direct"
-GENINCLUDES := $(GENINCLUDES) mmboot.$(INCEXT)
-endif
-
-# Headers from which GENINCLUDES are generated
-GENHEADERS = $(foreach inc,$(GENINCLUDES),$(basename $(inc)).h)
-
-# Non-generated generic include files
-ifndef BASEINCLUDES
-BASEINCLUDES := bootcpu.inc bootmacro.inc
-endif
-BASEINCLUDES := $(foreach f,$(BASEINCLUDES),$(basename $(f)).$(INCEXT))
-INCLUDES := $(foreach f,$(INCLUDES),$(basename $(f)).$(INCEXT))
-
-# Generic object files
-BASEOBJECTS = $(foreach src, $(BASESOURCES), $(basename $(src)).$(OBJEXT))
-
-# Platform specific object files
-OBJECTS = $(foreach src, $(SOURCES), $(basename $(src)).$(OBJEXT))
-
-# Object files with paths
-FULLBASEOBJECTS = $(addprefix $(EPOCBLDABS)/,$(BASEOBJECTS))
-FULLOBJECTS = $(addprefix $(EPOCBLDABS)/,$(OBJECTS))
-LINKOBJECTS = $(FULLBASEOBJECTS) $(FULLOBJECTS)
-
-# Generated include files with paths
-FULLGENINCLUDES = $(addprefix $(EPOCBLDABS)/,$(GENINCLUDES))
-
-# Tell make where to look for things
-vpath %.h . $(EXTRA_INC_PATH) $(EPOCINC) $(EPOCKERNINC) $(EPOCCPUINC) $(EPOCMMINC)
-vpath %.inc . $(EXTRA_INC_PATH) $(EXTENSION_ROOT) $(EPOCINC) $(EPOCKERNINC) $(EPOCCPUINC) $(EPOCMMINC) $(EPOCBLDABS)
-vpath %.ginc $(EPOCBLDABS)
-vpath %.$(SRCEXT) . $(EXTRA_SRC_PATH) $(EXTENSION_ROOT) $(BASESRCPATH)
-vpath %.$(OBJEXT) $(EPOCBLDABS)
-vpath %.lnk . $(EXTENSION_ROOT) $(EPOCCPUINC)
-
-# How to link the object files
-$(EPOCBLDABS)/$(NAME).$(EXEEXT): $(LINKOBJECTS) $(LINKFILE) $(call pipe,$(EPOCBLDABS))
- $(do_link)
-
-# How to strip linked object to binary
-$(TRG): $(EPOCBLDABS)/$(NAME).$(EXEEXT)
- $(do_strip)
-
-# How to assemble the source files
-ifdef PROCESS_INCLUDES
-FULLBASEINCLUDES := $(addprefix $(EPOCBLDABS)/,$(BASEINCLUDES))
-FULLINCLUDES := $(addprefix $(EPOCBLDABS)/,$(INCLUDES))
-
-$(FULLBASEINCLUDES) : $(EPOCBLDABS)/%.$(INCEXT) : %.inc $(call pipe,$(EPOCBLDABS))
- perl $(EPOCROOT)epoc32/tools/armasm2as.pl $< $@
-
-$(FULLINCLUDES) : $(EPOCBLDABS)/%.$(INCEXT) : %.inc $(call pipe,$(EPOCBLDABS))
- perl $(EPOCROOT)epoc32/tools/armasm2as.pl $< $@
-
-$(FULLBASEOBJECTS) : $(EPOCBLDABS)/%.$(OBJEXT) : %.$(SRCEXT) $(FULLINCLUDES) $(FULLBASEINCLUDES) $(FULLGENINCLUDES) $(call pipe,$(EPOCBLDABS))
- $(do_asm)
-
-$(FULLOBJECTS) : $(EPOCBLDABS)/%.$(OBJEXT) : %.$(SRCEXT) $(FULLINCLUDES) $(FULLBASEINCLUDES) $(FULLGENINCLUDES) $(call pipe,$(EPOCBLDABS))
- $(do_asm)
-
-else
-
-ifeq "$(CPU)" "x86"
-FULLBASEINCLUDES := $(addprefix $(EPOCBLDABS)/,$(BASEINCLUDES))
-FULLINCLUDES := $(addprefix $(EPOCBLDABS)/,$(INCLUDES))
-
-$(FULLBASEINCLUDES) $(FULLINCLUDES) : $(EPOCBLDABS)/%.inc : %.inc
- $(CP) $(call slash2generic,$<) $(call slash2generic,$@)
-
-$(FULLBASEOBJECTS) $(FULLOBJECTS) : $(EPOCBLDABS)/%.$(OBJEXT) : %.$(SRCEXT) $(FULLBASEINCLUDES) $(FULLGENINCLUDES) $(FULLINCLUDES)
- $(do_asm)
-
-else
-$(FULLBASEOBJECTS) $(FULLOBJECTS) : $(EPOCBLDABS)/%.$(OBJEXT) : %.$(SRCEXT) $(BASEINCLUDES) $(FULLGENINCLUDES) $(INCLUDES) $(call pipe,$(EPOCBLDABS))
- $(do_asm)
-
-endif
-endif
-
-# How to translate the .h files to .inc
-$(FULLGENINCLUDES) : $(EPOCBLDABS)/%.$(INCEXT) : %.h $(call pipe,$(EPOCBLDABS))
- perl $(EPOCROOT)epoc32/tools/h2inc.pl $< $@ $(ASMTYP)
-
-
-# How to make the working directories
-$(EPOCBLDABS) $(EPOCTRG) :
- $(call ifnotexistd,$(call slash2generic,$@))
-
-# Makmake targets
-.PHONY : MAKMAKE FREEZE LIB CLEANLIB RESOURCE FINAL BLD SAVESPACE RELEASABLES CLEAN
-.PHONY : build skip
-
-MAKMAKE :
- echo Nothing to do
- echo $(BASESRCPATH)
-
-FREEZE :
- echo Nothing to do
- echo $(BASESRCPATH)
-
-LIB :
- echo Nothing to do
- echo $(BASESRCPATH)
-
-CLEANLIB :
- echo Nothing to do
- echo $(BASESRCPATH)
-
-RESOURCE :
- echo Nothing to do
- echo $(BASESRCPATH)
-
-FINAL :
- echo Nothing to do
-
-BLD SAVESPACE : $(PROCEED)
-
-RELEASABLES :
- @echo $(TRG)
-
-CLEAN :
- -$(ERASE) $(call slash2generic,$(TRG))
- -$(ERASE) $(call slash2generic,$(EPOCBLDABS)/*.*)
-
-build: $(EPOCTRG) $(EPOCBLDABS) $(TRG)
- echo Bootstrap built for $(PLATFORM) $(CFG)
-
-skip:
- echo Bootstrap build skipped for $(PLATFORM) $(CFG)
--- a/deprecated/buildtools/buildsystem/extension/base/bootstrap.xml Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="ISO-8859-1" ?>
-<build xmlns="http://symbian.com/xml/build" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://symbian.com/xml/build build/2_0.xsd">
-
-<!-- Extension interfaces : replacements for Template Extension Makefiles
--->
-
-<interface name="base.bootstrap" extends="Symbian.KernelFLM" flm="bootstrap.flm">
- <param name="E32PATH" />
- <param name="NAME" />
- <param name="MEMMODEL" />
- <param name="EXTRA_INC_PATH" default=''/>
- <param name="EXTRA_EPOC32_INC_PATH" default=''/>
- <param name="SOURCES" />
- <param name="INCLUDES" />
- <param name="ASM_MACROS" default='' />
- <param name="GENINCLUDES_HEADERS" default=''/>
- <param name="CPU" default='arm'/>
- <param name="SMP" default=''/>
- <param name="LINKBASE" default='0x00000000'/>
- <param name="BASESOURCES_NAMES" default="bootmain.s bootcpu.s bootutils.s"/>
- <param name="INC_PATH" default=''/>
- </interface>
-</build>
--- a/deprecated/buildtools/buildsystem/extension/base/config.meta Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,21 +0,0 @@
-# Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# Meta information for the config extension template
-#
-
-platform win32
-makefile gnumake
-techstream base
-
-
--- a/deprecated/buildtools/buildsystem/extension/base/config.mk Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,65 +0,0 @@
-# Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-#
-
-# To guarantee there is a slash at the end of EPOCROOT in case there is not.
-# This is needed to ensure compatibility with SBSv1.
-TMPROOT:=$(subst \,/,$(EPOCROOT))
-EPOCROOT:=$(patsubst %/,%,$(TMPROOT))/
-
-include $(EPOCROOT)epoc32/tools/shell/$(notdir $(basename $(SHELL))).mk
-
-
-ifndef HALPATH
-HALPATH := ..
-endif
-
-ifndef SOURCE
-SOURCE := hal
-endif
-
-#MDIR := $(call generated,generatedcpp/hal) # abld
-#MDIR := $(call generated,base/lubbock) # raptor
-MDIR := $(call generatedcpp)
-
-MAKMAKE : $(MDIR)/$(PREFIX)values.cpp $(MDIR)/$(PREFIX)config.cpp
-
-FREEZE :
-
-LIB :
-
-CLEANLIB :
-
-RESOURCE :
-
-FINAL :
-
-BLD SAVESPACE : $(MDIR)/$(PREFIX)values.cpp $(MDIR)/$(PREFIX)config.cpp
-
-RELEASABLES :
-
-CLEAN :
- -$(ERASE) $(call slash2generic,$(MDIR)/$(PREFIX)values.cpp)
- -$(ERASE) $(call slash2generic,$(MDIR)/$(PREFIX)config.cpp)
-# -$(ERASE) $(MDIR)/$(PREFIX)values.cpp
-# -$(ERASE) $(MDIR)/$(PREFIX)config.cpp
-
-$(MDIR)/$(PREFIX)values.cpp : $(SOURCE)/values.hda $(EPOCROOT)epoc32/include/platform/hal_data.h
- -$(call createdir,"$(MDIR)")
- perl $(HALPATH)/hal/halcfg.pl $(EPOCROOT)epoc32/include/platform/hal_data.h $(SOURCE)/values.hda $(MDIR)/$(PREFIX)values.cpp
-
-$(MDIR)/$(PREFIX)config.cpp : $(SOURCE)/config.hcf $(EPOCROOT)epoc32/include/platform/hal_data.h
- -$(call createdir,"$(MDIR)")
- perl $(HALPATH)/hal/halcfg.pl -x $(EPOCROOT)epoc32/include/platform/hal_data.h $(SOURCE)/config.hcf $(MDIR)/$(PREFIX)config.cpp
-
--- a/deprecated/buildtools/buildsystem/extension/base/copy_default.meta Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,21 +0,0 @@
-# Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# Meta information for the copy_default extension template
-#
-
-platform win32
-makefile gnumake
-techstream base
-
-
--- a/deprecated/buildtools/buildsystem/extension/base/copy_default.mk Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,48 +0,0 @@
-# Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-#
-
-# To guarantee there is a slash at the end of EPOCROOT in case there is not.
-# This is needed to ensure compatibility with SBSv1.
-TMPROOT:=$(subst \,/,$(EPOCROOT))
-EPOCROOT:=$(patsubst %/,%,$(TMPROOT))/
-
-include $(EPOCROOT)epoc32/tools/shell/$(notdir $(basename $(SHELL))).mk
-
-
-SOURCE_COPY=$(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)/$(SOURCES)
-TARGET_COPY=$(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)/$(TARGET)
-
-$(TARGET_COPY) : $(SOURCE_COPY)
- $(call cpfeature,"$(SOURCE_COPY)","$(TARGET_COPY)")
-# perl $(EPOCROOT)epoc32/tools/copyfeaturevariants.pl "$(SOURCE_COPY)" "$(TARGET_COPY)"
-# $(CP) "$?" "$@"
-
-#
-# The targets invoked by abld...
-#
-
-MAKMAKE BLD SAVESPACE FREEZE LIB CLEANLIB RESOURCE :
- @echo Nothing to do for "$@"
-
-CLEAN :
- -$(ERASE) $(TARGET_COPY)
-
-RELEASABLES :
- @echo $(TARGET_COPY)
-
-# we have to wait until the SOURCE_COPY is built before we can copy it...
-#
-FINAL : $(TARGET_COPY)
-
--- a/deprecated/buildtools/buildsystem/extension/base/genexec.meta Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,21 +0,0 @@
-# Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# Meta information for the genexec extension template
-#
-
-platform win32
-makefile gnumake
-techstream base
-
-
--- a/deprecated/buildtools/buildsystem/extension/base/genexec.mk Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,71 +0,0 @@
-# Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-#
-
-# To guarantee there is a slash at the end of EPOCROOT in case there is not.
-# This is needed to ensure compatibility with SBSv1.
-TMPROOT:=$(subst \,/,$(EPOCROOT))
-EPOCROOT:=$(patsubst %/,%,$(TMPROOT))/
-
-include $(EPOCROOT)epoc32/tools/shell/$(notdir $(basename $(SHELL))).mk
-
-
-XINCDIR := $(INC_PATH)
-XINCKDIR := $(INC_PATH)/kernel
-
-PROCEED:=all
-ifneq "$(PBUILDPID)" ""
- ifneq "$(PLATFORM)" "$(__firstplat)"
- PROCEED:=skip
- endif
-endif
-
-.PHONY : MAKMAKE FREEZE LIB CLEANLIB RESOURCE FINAL BLD SAVESPACE RELEASABLES CLEAN
-.PHONY : all skip
-
-MAKMAKE : $(PROCEED)
-
-FREEZE :
-
-LIB : $(PROCEED)
-
-CLEANLIB :
-
-RESOURCE :
-
-FINAL :
-
-BLD SAVESPACE : $(PROCEED)
-
-RELEASABLES :
-
-CLEAN :
- -$(ERASE) $(call slash2generic,$(XINCDIR)/exec_enum.h)
- -$(ERASE) $(call slash2generic,$(XINCDIR)/exec_user.h)
- -$(ERASE) $(call slash2generic,$(XINCKDIR)/exec_kernel.h)
-
-all: $(XINCDIR)/exec_enum.h $(XINCDIR)/exec_user.h $(XINCKDIR)/exec_kernel.h
-
-$(XINCDIR)/exec_enum.h : $(EXTRA_SRC_PATH)/execs.txt $(EXTRA_SRC_PATH)/genexec.pl
- perl $(EXTRA_SRC_PATH)/genexec.pl -i $(EXTRA_SRC_PATH)/execs.txt -e $(XINCDIR)/exec_enum.h -u $(XINCDIR)/exec_user.h -k $(XINCKDIR)/exec_kernel.h
-
-$(XINCDIR)/exec_user.h : $(EXTRA_SRC_PATH)/execs.txt $(EXTRA_SRC_PATH)/genexec.pl
- perl $(EXTRA_SRC_PATH)/genexec.pl -i $(EXTRA_SRC_PATH)/execs.txt -e $(XINCDIR)/exec_enum.h -u $(XINCDIR)/exec_user.h -k $(XINCKDIR)/exec_kernel.h
-
-$(XINCKDIR)/exec_kernel.h : $(EXTRA_SRC_PATH)/execs.txt $(EXTRA_SRC_PATH)/genexec.pl
- perl $(EXTRA_SRC_PATH)/genexec.pl -i $(EXTRA_SRC_PATH)/execs.txt -e $(XINCDIR)/exec_enum.h -u $(XINCDIR)/exec_user.h -k $(XINCKDIR)/exec_kernel.h
-
-
-skip:
- echo GENEXEC skipped for $(PLATFORM) $(CFG)
--- a/deprecated/buildtools/buildsystem/extension/converged-comms/createcommdbs.meta Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-# Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# Meta information for PDR generation
-#
-
-platform win32
-makefile gnumake
-techstream converged-comms
-
--- a/deprecated/buildtools/buildsystem/extension/converged-comms/createcommdbs.mk Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,50 +0,0 @@
-# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# Envoke CED to create correct CommDB
-#
-#
-
-do_nothing :
-
-
-#
-# The targets invoked by abld
-#
-
-MAKMAKE : do_nothing
-
-RESOURCE : do_nothing
-
-SAVESPACE : BLD
-
-BLD : do_nothing
-
-FREEZE : do_nothing
-
-LIB : do_nothing
-
-CLEANLIB : do_nothing
-
-FINAL :
- perl $(EXTENSION_ROOT)/createcommdbs.pl --command=build --platform=$(PLATFORM) --variant=$(CFG) --sourceDir=$(EXTENSION_ROOT)/$(SRCDIR) --platsec
-
-CLEAN :
- perl $(EXTENSION_ROOT)/createcommdbs.pl --command=clean --platform=$(PLATFORM) --variant=$(CFG) --sourceDir=$(EXTENSION_ROOT)/$(SRCDIR) --platsec
-
-RELEASABLES :
- @perl $(EXTENSION_ROOT)/createcommdbs.pl --command=releasables --platform=$(PLATFORM) --variant=$(CFG) --sourceDir=$(EXTENSION_ROOT)/$(SRCDIR) --platsec
-
-
-
-
--- a/deprecated/buildtools/buildsystem/extension/converged-comms/installdefaultcommdb.meta Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-# Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# Meta information for PDR generation
-#
-
-platform win32
-makefile gnumake
-techstream converged-comms
-
--- a/deprecated/buildtools/buildsystem/extension/converged-comms/installdefaultcommdb.mk Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,48 +0,0 @@
-# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# Envoke CED to install correct CommDB
-#
-
-do_nothing :
- rem do_nothing
-
-#
-# The targets invoked by abld
-#
-
-MAKMAKE : do_nothing
-
-RESOURCE : do_nothing
-
-SAVESPACE : BLD
-
-BLD : do_nothing
-
-FREEZE : do_nothing
-
-LIB : do_nothing
-
-CLEANLIB : do_nothing
-
-FINAL :
- perl $(EXTENSION_ROOT)/installdefaultcommdb.pl --command=build --platform=$(PLATFORM) --variant=$(CFG) --platsec
-
-CLEAN :
- perl $(EXTENSION_ROOT)/installdefaultcommdb.pl --command=clean --platform=$(PLATFORM) --variant=$(CFG) --platsec
-
-RELEASABLES :
- @perl $(EXTENSION_ROOT)/installdefaultcommdb.pl --command=releasables --platform=$(PLATFORM) --variant=$(CFG) --platsec
-
-
-
--- a/deprecated/buildtools/buildsystem/extension/syslibs/test/bafl_copytestfiles.meta Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# Meta information for bafl_copytestfiles use
-#
-
-platform win32
-makefile gnumake
-techstream syslibs
--- a/deprecated/buildtools/buildsystem/extension/syslibs/test/bafl_copytestfiles.mk Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,74 +0,0 @@
-# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# Copy test files to test sortbytable functionality.
-#
-#
-
-TMPROOT:=$(subst \,/,$(EPOCROOT))
-EPOCROOT:=$(patsubst %/,%,$(TMPROOT))/
-
-include $(EPOCROOT)epoc32/tools/shell/$(notdir $(basename $(SHELL))).mk
-
-ifeq ($(findstring WINS,$(PLATFORM)),WINS)
-EPOCDATADIR=$(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)
-else
-EPOCDATADIR=$(EPOCROOT)epoc32/data
-endif
-
-TARGETDIR=$(EPOCDATADIR)/z/system/documents/baflsortbytabletest
-SOURCEDIR=$(EXTENSION_ROOT)/../tsrc
-
-COPYFILES :
- $(CP) $(call slash2generic,$(SOURCEDIR)/ADDCERT.RSC $(TARGETDIR)/addcert.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/HELP.RSC $(TARGETDIR)/help.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/MSGEDITOR.RSC $(TARGETDIR)/msgeditor.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/SMLPROGRESS.RSC $(TARGETDIR)/smlprogress.rsc)
-
-$(TARGETDIR) :
- $(call createdir,"$@")
-
-DO_NOTHING :
- @echo do nothing
-
-#
-# The targets invoked by bld...
-#
-
-BLD : $(TARGETDIR) COPYFILES
-
-CLEAN :
- -$(ERASE) $(call slash2generic,$(TARGETDIR)/addcert.rsc)
- -$(ERASE) $(call slash2generic,$(TARGETDIR)/help.rsc)
- -$(ERASE) $(call slash2generic,$(TARGETDIR)/msgeditor.rsc)
- -$(ERASE) $(call slash2generic,$(TARGETDIR)/smlprogress.rsc)
-
-RELEASABLES :
- @echo $(TARGETDIR)/addcert.rsc
- @echo $(TARGETDIR)/help.rsc
- @echo $(TARGETDIR)/msgeditor.rsc
- @echo $(TARGETDIR)/smlprogress.rsc
-
-MAKMAKE : DO_NOTHING
-
-SAVESPACE : DO_NOTHING
-
-RESOURCE : DO_NOTHING
-
-FREEZE : DO_NOTHING
-
-LIB : DO_NOTHING
-
-CLEANLIB : DO_NOTHING
-
-FINAL : DO_NOTHING
--- a/deprecated/buildtools/buildsystem/extension/syslibs/test/bafl_resource_files.meta Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# Meta information for t_copytestfiles use
-#
-
-platform win32
-makefile gnumake
-techstream syslibs
--- a/deprecated/buildtools/buildsystem/extension/syslibs/test/bafl_resource_files.mk Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,205 +0,0 @@
-# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# Copy test files to test sortbytable functionality.
-#
-#
-
-TMPROOT:=$(subst \,/,$(EPOCROOT))
-EPOCROOT:=$(patsubst %/,%,$(TMPROOT))/
-
-include $(EPOCROOT)epoc32/tools/shell/$(notdir $(basename $(SHELL))).mk
-
-ifeq ($(findstring WINS,$(PLATFORM)),WINS)
-TARGET_DIRECTORY=$(EPOCROOT)epoc32/release/$(PLATFORM)/$(CFG)/z/system/data
-else
-TARGET_DIRECTORY=$(EPOCROOT)epoc32/data/z/system/data
-endif
-
-SOURCEDIR=$(EXTENSION_ROOT)/../tsrc
-
-$(TARGET_DIRECTORY) :
- $(call createdir,"$@")
-
-TARGET_FILES=\
- $(TARGET_DIRECTORY)/t_compressed_unicode_1.rsc $(EPOCROOT)epoc32\include\T_COMPRESSED_UNICODE_1.RSG \
- $(TARGET_DIRECTORY)/t_compressed_unicode_2.rsc $(EPOCROOT)epoc32\include\T_COMPRESSED_UNICODE_2.RSG \
- $(TARGET_DIRECTORY)/t_dictionary_compressed_versio_of_2.rsc \
- $(TARGET_DIRECTORY)/t_calypso_test_resource_file_1.rsc \
- $(TARGET_DIRECTORY)/t_notrscfile.rsc \
- $(TARGET_DIRECTORY)/rscheader.bin \
- $(TARGET_DIRECTORY)/newrscformat.rsc \
-
-$(TARGET_DIRECTORY)/t_compressed_unicode_1.rsc : $(SOURCEDIR)/T_COMPRESSED_UNICODE_1.RPP
- @RCOMP.EXE -s$? -o$@ -h$(EPOCROOT)epoc32/include/T_COMPRESSED_UNICODE_1.RSG -u -{0x000eb205,*}
-$(EPOCROOT)epoc32/include/T_COMPRESSED_UNICODE_1.RSG : $(SOURCEDIR)/T_COMPRESSED_UNICODE_1.RPP
- @RCOMP.EXE -s$? -o$(TARGET_DIRECTORY)/t_compressed_unicode_1.rsc -h$@ -u -{0x000eb205,*}
-
-$(TARGET_DIRECTORY)/t_compressed_unicode_2.rsc : $(SOURCEDIR)/T_COMPRESSED_UNICODE_2.RPP
- @RCOMP.EXE -s$? -o$@ -h$(EPOCROOT)epoc32/include/T_COMPRESSED_UNICODE_2.RSG -u
-$(EPOCROOT)epoc32/include/T_COMPRESSED_UNICODE_2.RSG : $(SOURCEDIR)/T_COMPRESSED_UNICODE_2.RPP
- @RCOMP.EXE -s$? -o$(TARGET_DIRECTORY)/t_compressed_unicode_2.rsc -h$@ -u
-
-$(TARGET_DIRECTORY)/t_dictionary_compressed_versio_of_2.rsc : $(SOURCEDIR)/T_GENERATE_DICTIONARY_COMPRESSED_VERSION_OF_2.PL
- @perl -w $(SOURCEDIR)/T_GENERATE_DICTIONARY_COMPRESSED_VERSION_OF_2.PL $(TARGET_DIRECTORY)/t_dictionary_compressed_versio_of_2.rsc
-
-$(TARGET_DIRECTORY)/t_calypso_test_resource_file_1.rsc : $(SOURCEDIR)/T_CALYPSO_COMPILED_RESOURCE_FILE_1.RSC
- $(CP) $(call slash2generic,$(SOURCEDIR)/T_CALYPSO_COMPILED_RESOURCE_FILE_1.RSC $(TARGET_DIRECTORY)/t_calypso_test_resource_file_1.rsc)
-
-$(TARGET_DIRECTORY)/t_notrscfile.rsc : $(SOURCEDIR)/T_NotRscFile.RSC
- $(CP) $(call slash2generic,$(SOURCEDIR)/T_NotRscFile.RSC $(TARGET_DIRECTORY)/t_notrscfile.rsc)
-
-$(TARGET_DIRECTORY)/rscheader.bin :
- $(CP) $(call slash2generic,$(SOURCEDIR)/RscHeader.Bin $(TARGET_DIRECTORY)/rscheader.bin)
-
-$(TARGET_DIRECTORY)/newrscformat.rsc : $(SOURCEDIR)/RscHeader.Bin $(SOURCEDIR)/RLETest.BMP $(TARGET_DIRECTORY)/TRSC.rsc
- @BMCONV.EXE $(SOURCEDIR)/16RAMC.MBM /c16$(SOURCEDIR)/RLETest.BMP
- $(CP) $(call slash2generic,$(SOURCEDIR)/RscHeader.Bin)/b + $(call slash2generic,$(TARGET_DIRECTORY)/TRSC.rsc)/b + $(call slash2generic,$(SOURCEDIR)/16RAMC.MBM) /b $(call slash2generic,$(TARGET_DIRECTORY)/newrscformat.rsc)
-
-COPYFILES :
- $(CP) $(call slash2generic,$(SOURCEDIR)/TRSC_Inv1.RSC $(TARGET_DIRECTORY)/trsc_inv1.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/TRSC_Inv2.RSC $(TARGET_DIRECTORY)/trsc_inv2.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/TRSC_Inv3.RSC $(TARGET_DIRECTORY)/trsc_inv3.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/TRSC_Inv4.RSC $(TARGET_DIRECTORY)/trsc_inv4.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/TRSC_Inv5.RSC $(TARGET_DIRECTORY)/trsc_inv5.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/TRSC_Inv6.RSC $(TARGET_DIRECTORY)/trsc_inv6.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/TRSC_Inv7.RSC $(TARGET_DIRECTORY)/trsc_inv7.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/TRSC_Inv8.RSC $(TARGET_DIRECTORY)/trsc_inv8.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/TRSC_Inv9.RSC $(TARGET_DIRECTORY)/trsc_inv9.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/TRscCalypso_Inv10.RSC $(TARGET_DIRECTORY)/trsccalypso_inv10.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/TRscCalypso_Inv11.RSC $(TARGET_DIRECTORY)/trsccalypso_inv11.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/TRscCalypso_Inv12.RSC $(TARGET_DIRECTORY)/trsccalypso_inv12.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/TRscComprU_Inv13.RSC $(TARGET_DIRECTORY)/trsccompru_inv13.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/TRscComprU_Inv14.RSC $(TARGET_DIRECTORY)/trsccompru_inv14.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/TRscComprU_Inv15.RSC $(TARGET_DIRECTORY)/trsccompru_inv15.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/TRscCalypso_Inv16.RSC $(TARGET_DIRECTORY)/trsccalypso_inv16.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/TRscCalypso_Inv17.RSC $(TARGET_DIRECTORY)/trsccalypso_inv17.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/RscHeader.Bin)/b + $(call slash2generic,$(TARGET_DIRECTORY)/t_calypso_test_resource_file_1.rsc)/b $(call slash2generic,$(TARGET_DIRECTORY)/trscromcalypsocomprnewfmt.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/Spi_ECom.spi $(TARGET_DIRECTORY)/spi_ecom.spi)
- $(CP) $(call slash2generic,$(SOURCEDIR)/Spi_EComRsc1.RSC $(TARGET_DIRECTORY)/spi_ecomrsc1.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/Spi_EComRsc2.RSC $(TARGET_DIRECTORY)/spi_ecomrsc2.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/Spi_EComRsc3.RSC $(TARGET_DIRECTORY)/spi_ecomrsc3.rsc)
- $(CP) $(call slash2generic,$(SOURCEDIR)/ECom-1-0.spi $(TARGET_DIRECTORY)/ecom-1-0.spi)
- $(CP) $(call slash2generic,$(SOURCEDIR)/ECom-1-0.s02 $(TARGET_DIRECTORY)/ecom-1-0.s02)
- $(CP) $(call slash2generic,$(SOURCEDIR)/ECom-2-0.spi $(TARGET_DIRECTORY)/ecom-2-0.spi)
- $(CP) $(call slash2generic,$(SOURCEDIR)/ECom-2-0.s02 $(TARGET_DIRECTORY)/ecom-2-0.s02)
- $(CP) $(call slash2generic,$(SOURCEDIR)/Spi_ECom-0-0.spi $(TARGET_DIRECTORY)/spi_ecom-0-0.spi)
- $(CP) $(call slash2generic,$(SOURCEDIR)/Spi_ECom-1-0.spi $(TARGET_DIRECTORY)/spi_ecom-1-0.spi)
- $(CP) $(call slash2generic,$(SOURCEDIR)/CECom-0-0.spi $(TARGET_DIRECTORY)/cecom-0-0.spi)
- $(CP) $(call slash2generic,$(SOURCEDIR)/CECom-1-0.spi $(TARGET_DIRECTORY)/cecom-1-0.spi)
- $(CP) $(call slash2generic,$(SOURCEDIR)/Spi_ECom_Case-0-0.spi $(TARGET_DIRECTORY)/spi_ecom_case-0-0.spi)
- $(CP) $(call slash2generic,$(SOURCEDIR)/Spi_ECom_Case-1-0.spi $(TARGET_DIRECTORY)/spi_ecom_case-1-0.spi)
-
-
-DO_NOTHING :
- @echo do nothing
-
-# the targets below are the public ones
-
-MAKMAKE : DO_NOTHING
-
-BLD : $(TARGET_DIRECTORY) $(TARGET_FILES) COPYFILES
-
-SAVESPACE : BLD
-
-FREEZE : DO_NOTHING
-
-LIB : DO_NOTHING
-
-CLEANLIB : DO_NOTHING
-
-RESOURCE : DO_NOTHING
-
-CLEAN :
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/t_compressed_unicode_1.rsc $(EPOCROOT)epoc32/include/t_compressed_unicode_1.rsg)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/t_compressed_unicode_2.rsc $(EPOCROOT)epoc32/include/t_compressed_unicode_2.rsg)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/t_dictionary_compressed_versio_of_2.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/t_calypso_test_resource_file_1.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/t_notrscfile.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/rscheader.bin)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/newrscformat.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/trsc_inv1.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/trsc_inv2.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/trsc_inv3.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/trsc_inv4.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/trsc_inv5.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/trsc_inv6.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/trsc_inv7.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/trsc_inv8.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/trsc_inv9.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/trsccalypso_inv10.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/trsccalypso_inv11.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/trsccalypso_inv12.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/trsccompru_inv13.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/trsccompru_inv14.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/trsccompru_inv15.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/trsccalypso_inv16.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/trsccalypso_inv17.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/trscromcalypsocomprnewfmt.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/spi_ecom.spi)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/spi_ecomrsc1.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/spi_ecomrsc2.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/spi_ecomrsc3.rsc)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/ecom-1-0.spi)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/ecom-1-0.s02)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/ecom-2-0.spi)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/ecom-2-0.s02)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/spi_ecom-0-0.spi)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/spi_ecom-1-0.spi)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/cecom-0-0.spi)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/cecom-1-0.spi)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/spi_ecom_case-0-0.spi)
- -$(ERASE) $(call slash2generic,$(TARGET_DIRECTORY)/spi_ecom_case-1-0.spi)
-
-RELEASABLES :
- @echo $(TARGET_DIRECTORY)/t_compressed_unicode_1.rsc $(EPOCROOT)epoc32/include/t_compressed_unicode_1.rsg
- @echo $(TARGET_DIRECTORY)/t_compressed_unicode_2.rsc $(EPOCROOT)epoc32/include/t_compressed_unicode_2.rsg
- @echo $(TARGET_DIRECTORY)/t_dictionary_compressed_versio_of_2.rsc
- @echo $(TARGET_DIRECTORY)/t_calypso_test_resource_file_1.rsc
- @echo $(TARGET_DIRECTORY)/t_notrscfile.rsc
- @echo $(TARGET_DIRECTORY)/rscheader.bin
- @echo $(TARGET_DIRECTORY)/newrscformat.rsc
- @echo $(TARGET_DIRECTORY)/trsc_inv1.rsc
- @echo $(TARGET_DIRECTORY)/trsc_inv2.rsc
- @echo $(TARGET_DIRECTORY)/trsc_inv3.rsc
- @echo $(TARGET_DIRECTORY)/trsc_inv4.rsc
- @echo $(TARGET_DIRECTORY)/trsc_inv5.rsc
- @echo $(TARGET_DIRECTORY)/trsc_inv6.rsc
- @echo $(TARGET_DIRECTORY)/trsc_inv7.rsc
- @echo $(TARGET_DIRECTORY)/trsc_inv8.rsc
- @echo $(TARGET_DIRECTORY)/trsc_inv9.rsc
- @echo $(TARGET_DIRECTORY)/trsccalypso_inv10.rsc
- @echo $(TARGET_DIRECTORY)/trsccalypso_inv11.rsc
- @echo $(TARGET_DIRECTORY)/trsccalypso_inv12.rsc
- @echo $(TARGET_DIRECTORY)/trsccompru_inv13.rsc
- @echo $(TARGET_DIRECTORY)/trsccompru_inv14.rsc
- @echo $(TARGET_DIRECTORY)/trsccompru_inv15.rsc
- @echo $(TARGET_DIRECTORY)/trsccalypso_inv16.rsc
- @echo $(TARGET_DIRECTORY)/trsccalypso_inv17.rsc
- @echo $(TARGET_DIRECTORY)/trscromcalypsocomprnewfmt.rsc
- @echo $(TARGET_DIRECTORY)/spi_ecom.spi
- @echo $(TARGET_DIRECTORY)/spi_ecomrsc1.rsc
- @echo $(TARGET_DIRECTORY)/spi_ecomrsc2.rsc
- @echo $(TARGET_DIRECTORY)/spi_ecomrsc3.rsc
- @echo $(TARGET_DIRECTORY)/ecom-1-0.spi
- @echo $(TARGET_DIRECTORY)/ecom-1-0.s02
- @echo $(TARGET_DIRECTORY)/ecom-2-0.spi
- @echo $(TARGET_DIRECTORY)/ecom-2-0.s02
- @echo $(TARGET_DIRECTORY)/spi_ecom-0-0.spi
- @echo $(TARGET_DIRECTORY)/spi_ecom-1-0.spi
- @echo $(TARGET_DIRECTORY)/cecom-0-0.spi
- @echo $(TARGET_DIRECTORY)/cecom-1-0.spi
- @echo $(TARGET_DIRECTORY)/spi_ecom_case-0-0.spi
- @echo $(TARGET_DIRECTORY)/spi_ecom_case-1-0.spi
-
-FINAL : DO_NOTHING
--- a/deprecated/buildtools/buildsystem/extension/syslibs/test/centrep_copydatfile.meta Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# Meta information for centrep_copydatfile use
-#
-
-platform win32
-makefile gnumake
-techstream syslibs
--- a/deprecated/buildtools/buildsystem/extension/syslibs/test/centrep_copydatfile.mk Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,70 +0,0 @@
-# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-#
-
-TMPROOT:=$(subst \,/,$(EPOCROOT))
-EPOCROOT:=$(patsubst %/,%,$(TMPROOT))/
-
-include $(EPOCROOT)epoc32/tools/shell/$(notdir $(basename $(SHELL))).mk
-
-ifeq ($(findstring WINS,$(PLATFORM)),WINS)
- EPOCDATADIR=$(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)
-else
- EPOCDATADIR=$(EPOCROOT)epoc32/data
-endif
-
-TARGETDIR = $(EPOCDATADIR)/z/resource
-SOURCEDIR = $(EXTENSION_ROOT)/../data/certstore
-
-FILE = swicertstore.dat
-
-$(TARGETDIR) :
- $(call createdir, "$@")
-
-COPYFILES : $(FILE)
-
- $(call forcecopy,$(SOURCEDIR)/$^,$(TARGETDIR)/$^)
-
-$(FILE) :
-
-DO_NOTHING:
- @echo do nothing
-
-#
-# The targets invoked by bld...
-#
-
-BLD : $(TARGETDIR) COPYFILES
-
-CLEAN :
- $(call forceremove,$(TARGETDIR)/swicertstore.dat)
-
-RELEASABLES :
- @echo $(TARGETDIR)/swicertstore.dat
-
-MAKMAKE : DO_NOTHING
-
-SAVESPACE : DO_NOTHING
-
-LIB : DO_NOTHING
-
-CLEANLIB : DO_NOTHING
-
-FREEZE : DO_NOTHING
-
-RESOURCE : DO_NOTHING
-
-FINAL : DO_NOTHING
-
-ROMFILE : DO_NOTHING
--- a/deprecated/buildtools/buildsystem/extension/syslibs/test/centrep_copyincentrepsrv.meta Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# Meta information for centrep_copyincentrepsrv use
-#
-
-platform win32
-makefile gnumake
-techstream syslibs
--- a/deprecated/buildtools/buildsystem/extension/syslibs/test/centrep_copyincentrepsrv.mk Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,74 +0,0 @@
-# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-#
-
-TMPROOT:=$(subst \,/,$(EPOCROOT))
-EPOCROOT:=$(patsubst %/,%,$(TMPROOT))/
-
-include $(EPOCROOT)epoc32/tools/shell/$(notdir $(basename $(SHELL))).mk
-
-ifeq ($(findstring WINS,$(PLATFORM)),WINS)
-CENTREPSRVSRCDIR = $(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)
-CENTREPSRVTGTDIR = $(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)/z/sys/bin
-
-FILE = centralrepositorysrv.exe
-
-$(CENTREPSRVTGTDIR) :
- $(call createdir, "$(CENTREPSRVTGTDIR)")
-
-COPYFILE : $(FILE)
- $(call forcecopy,$(CENTREPSRVSRCDIR)/$^,$(CENTREPSRVTGTDIR))
-
-$(FILE):
-endif
-
-DO_NOTHING :
- @echo do nothing
-
-#
-# The targets invoked by bld...
-#
-
-ifeq ($(findstring WINS,$(PLATFORM)),WINS)
-BLD : $(CENTREPSRVTGTDIR) $(CENTREPSRVSRCDIR) COPYFILE
-
-CLEAN : $(FILE)
- $(call forceremove,$(CENTREPSRVTGTDIR)/$^)
-
-RELEASABLES : $(FILE)
- @echo $(CENTREPSRVTGTDIR)/$^
-
-else
-BLD : DO_NOTHING
-
-CLEAN : DO_NOTHING
-
-RELEASABLES : DO_NOTHING
-endif
-
-MAKMAKE : DO_NOTHING
-
-SAVESPACE : DO_NOTHING
-
-LIB : DO_NOTHING
-
-CLEANLIB : DO_NOTHING
-
-FREEZE : DO_NOTHING
-
-RESOURCE : DO_NOTHING
-
-FINAL : DO_NOTHING
-
-ROMFILE : DO_NOTHING
--- a/deprecated/buildtools/buildsystem/extension/syslibs/test/centrep_copypctestfile.meta Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-# Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# Meta information for centrep_copypctestfile use
-#
-
-platform win32
-makefile gnumake
-techstream syslibs
--- a/deprecated/buildtools/buildsystem/extension/syslibs/test/centrep_copypctestfile.mk Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,203 +0,0 @@
-# Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-#
-
-TMPROOT:=$(subst \,/,$(EPOCROOT))
-EPOCROOT:=$(patsubst %/,%,$(TMPROOT))/
-
-include $(EPOCROOT)epoc32/tools/shell/$(notdir $(basename $(SHELL))).mk
-
-ifeq ($(findstring WINS,$(PLATFORM)),WINS)
- EPOCDATADIR = $(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)
-else
- EPOCDATADIR = $(EPOCROOT)epoc32/data
-endif
-
-SECURETARGETDIR = $(EPOCDATADIR)/z/private/10202BE9
-
-PCCENREPSOURCE = $(EXTENSION_ROOT)/../test
-PCCENREPDATADIR = $(EPOCROOT)epoc32/winscw/c/private/00000000
-PCCENREPTESTDIR = $(EPOCROOT)epoc32/winscw/c
-PCCENREPPCTESTDIR = $(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)
-
-$(SECURETARGETDIR) :
- $(call createdir, "$@")
-
-$(PCCENREPDATADIR) :
- $(call createdir, "$@")
-
-COPYFILES :
-ifneq ($(findstring TOOLS2,$(PLATFORM)),TOOLS2)
-
- $(call forcecopy,$(PCCENREPSOURCE)/000001ff.txt,$(SECURETARGETDIR)/000001ff.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/00001fff.cre,$(SECURETARGETDIR)/00001fff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/000002ff.cre,$(SECURETARGETDIR)/000002ff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/88888880.txt,$(SECURETARGETDIR)/88888880.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/88888881.cre,$(SECURETARGETDIR)/88888881.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/00022222.txt,$(SECURETARGETDIR)/00022222.txt)
-
-ifeq ($(findstring WINS,$(PLATFORM)),WINS)
- $(call forcecopy,$(PCCENREPSOURCE)/000001ff.txt,$(PCCENREPDATADIR)/000001ff.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/00001fff.cre,$(PCCENREPDATADIR)/00001fff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/000002ff.cre,$(PCCENREPDATADIR)/000002ff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/88888880.txt,$(PCCENREPDATADIR)/88888880.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/88888881.cre,$(PCCENREPDATADIR)/88888881.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/winscwcre.cre,$(PCCENREPDATADIR)/ref_winscwcre.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/winscwtxt.cre,$(PCCENREPDATADIR)/ref_winscwtxt.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/000001ff.txt,$(PCCENREPDATADIR)/copy000001ff.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/00001fff.cre,$(PCCENREPDATADIR)/copy00001fff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/000002ff.cre,$(PCCENREPDATADIR)/copy000002ff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/00022222.txt,$(PCCENREPDATADIR)/00022222.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/00022222.cre,$(PCCENREPDATADIR)/copy00022222.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/000001ff.txt,$(PCCENREPTESTDIR)/000001ff.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/00001fff.cre,$(PCCENREPTESTDIR)/00001fff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/00001fff.cre,$(PCCENREPTESTDIR)/copy00001fff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/00022222.txt,$(PCCENREPTESTDIR)/00022222.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/00022222.cre,$(PCCENREPTESTDIR)/copy00022222.cre)
-endif
-
-else
- $(call forcecopy,$(PCCENREPSOURCE)/000001ff.txt,$(PCCENREPPCTESTDIR)/000001ff.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/00001fff.cre,$(PCCENREPPCTESTDIR)/00001fff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/000001ff.txt,$(PCCENREPPCTESTDIR)/copy000001ff.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/00001fff.cre,$(PCCENREPPCTESTDIR)/copy00001fff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/000002ff.cre,$(PCCENREPPCTESTDIR)/000002ff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/000002ff.cre,$(PCCENREPPCTESTDIR)/copy000002ff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/winscwcre.cre,$(PCCENREPPCTESTDIR)/ref_winscwcre.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/winscwtxt.cre,$(PCCENREPPCTESTDIR)/ref_winscwtxt.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/88888880.txt,$(PCCENREPPCTESTDIR)/88888880.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/88888881.cre,$(PCCENREPPCTESTDIR)/88888881.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/00022222.txt,$(PCCENREPPCTESTDIR)/00022222.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/00022222.cre,$(PCCENREPPCTESTDIR)/copy00022222.cre)
-
-endif
-
-DO_NOTHING:
- @echo do nothing
-
-#
-# The targets invoked by bld...
-#
-
-BLD : $(SECURETARGETDIR) $(PCCENREPDATADIR) $(PCCENREPTESTDIR) $(PCCENREPSOURCE) $(PCCENREPPCTESTDIR) COPYFILES
-
-CLEAN :
-
-ifneq ($(findstring TOOLS2,$(PLATFORM)),TOOLS2)
-
- $(call forceremove,$(SECURETARGETDIR)/000001ff.txt)
- $(call forceremove,$(SECURETARGETDIR)/00001fff.cre)
- $(call forceremove,$(SECURETARGETDIR)/000002ff.cre)
- $(call forceremove,$(SECURETARGETDIR)/88888880.txt)
- $(call forceremove,$(SECURETARGETDIR)/88888881.cre)
- $(call forceremove,$(SECURETARGETDIR)/00022222.txt)
-
-ifeq ($(findstring WINS,$(PLATFORM)),WINS)
- $(call forceremove,$(PCCENREPDATADIR)/000001ff.txt)
- $(call forceremove,$(PCCENREPDATADIR)/00001fff.cre)
- $(call forceremove,$(PCCENREPDATADIR)/000002ff.cre)
- $(call forceremove,$(PCCENREPDATADIR)/88888880.txt)
- $(call forceremove,$(PCCENREPDATADIR)/88888881.cre)
- $(call forceremove,$(PCCENREPDATADIR)/ref_winscwcre.cre)
- $(call forceremove,$(PCCENREPDATADIR)/ref_winscwtxt.cre)
- $(call forceremove,$(PCCENREPDATADIR)/copy000001ff.txt)
- $(call forceremove,$(PCCENREPDATADIR)/copy00001fff.cre)
- $(call forceremove,$(PCCENREPDATADIR)/copy000002ff.cre)
- $(call forceremove,$(PCCENREPDATADIR)/00022222.txt)
- $(call forceremove,$(PCCENREPDATADIR)/copy00022222.cre)
- $(call forceremove,$(PCCENREPTESTDIR)/000001ff.txt)
- $(call forceremove,$(PCCENREPTESTDIR)/00001fff.cre)
- $(call forceremove,$(PCCENREPTESTDIR)/copy00001fff.cre)
- $(call forceremove,$(PCCENREPTESTDIR)/00022222.txt)
- $(call forceremove,$(PCCENREPTESTDIR)/copy00022222.cre)
-
-endif
-
-else
- $(call forceremove,$(PCCENREPPCTESTDIR)/000001ff.txt)
- $(call forceremove,$(PCCENREPPCTESTDIR)/00001fff.cre)
- $(call forceremove,$(PCCENREPPCTESTDIR)/copy000001ff.txt)
- $(call forceremove,$(PCCENREPPCTESTDIR)/copy00001fff.cre)
- $(call forceremove,$(PCCENREPPCTESTDIR)/000002ff.cre)
- $(call forceremove,$(PCCENREPPCTESTDIR)/copy000002ff.cre)
- $(call forceremove,$(PCCENREPPCTESTDIR)/ref_winscwcre.cre)
- $(call forceremove,$(PCCENREPPCTESTDIR)/ref_winscwtxt.cre)
- $(call forceremove,$(PCCENREPPCTESTDIR)/88888880.txt)
- $(call forceremove,$(PCCENREPPCTESTDIR)/88888881.cre)
- $(call forceremove,$(PCCENREPPCTESTDIR)/00022222.txt)
- $(call forceremove,$(PCCENREPPCTESTDIR)/copy00022222.cre)
-
-endif
-
-RELEASABLES :
-ifneq ($(findstring TOOLS2,$(PLATFORM)),TOOLS2)
-
- @echo $(SECURETARGETDIR)/000001ff.txt
- @echo $(SECURETARGETDIR)/00001fff.cre
- @echo $(SECURETARGETDIR)/000002ff.cre
- @echo $(SECURETARGETDIR)/88888880.txt
- @echo $(SECURETARGETDIR)/88888881.cre
- @echo $(SECURETARGETDIR)/00022222.txt
-
-ifeq ($(findstring WINS,$(PLATFORM)),WINS)
- @echo $(PCCENREPDATADIR)/000001ff.txt
- @echo $(PCCENREPDATADIR)/00001fff.cre
- @echo $(PCCENREPDATADIR)/000002ff.cre
- @echo $(PCCENREPDATADIR)/88888880.txt
- @echo $(PCCENREPDATADIR)/88888881.cre
- @echo $(PCCENREPDATADIR)/ref_winscwcre.cre
- @echo $(PCCENREPDATADIR)/ref_winscwtxt.cre
- @echo $(PCCENREPDATADIR)/copy000001ff.txt
- @echo $(PCCENREPDATADIR)/copy00001fff.cre
- @echo $(PCCENREPDATADIR)/copy000002ff.cre
- @echo $(PCCENREPDATADIR)/00022222.txt
- @echo $(PCCENREPDATADIR)/copy00022222.cre
- @echo $(PCCENREPTESTDIR)/000001ff.txt
- @echo $(PCCENREPTESTDIR)/00001fff.cre
- @echo $(PCCENREPTESTDIR)/copy00001fff.cre
- @echo $(PCCENREPTESTDIR)/00022222.txt
- @echo $(PCCENREPTESTDIR)/copy00022222.cre
-
-endif
-
-else
- @echo $(PCCENREPPCTESTDIR)/000001ff.txt
- @echo $(PCCENREPPCTESTDIR)/00001fff.cre
- @echo $(PCCENREPPCTESTDIR)/copy000001ff.txt
- @echo $(PCCENREPPCTESTDIR)/copy00001fff.cre
- @echo $(PCCENREPPCTESTDIR)/000002ff.cre
- @echo $(PCCENREPPCTESTDIR)/copy000002ff.cre
- @echo $(PCCENREPPCTESTDIR)/ref_winscwcre.cre
- @echo $(PCCENREPPCTESTDIR)/ref_winscwtxt.cre
- @echo $(PCCENREPPCTESTDIR)/88888880.txt
- @echo $(PCCENREPPCTESTDIR)/88888881.cre
- @echo $(PCCENREPPCTESTDIR)/00022222.txt
- @echo $(PCCENREPPCTESTDIR)/copy00022222.cre
-endif
-
-MAKMAKE : DO_NOTHING
-
-RESOURCE : DO_NOTHING
-
-SAVESPACE : DO_NOTHING
-
-FREEZE : DO_NOTHING
-
-LIB : DO_NOTHING
-
-CLEANLIB : DO_NOTHING
-
-FINAL : DO_NOTHING
-
-ROMFILE : DO_NOTHING
--- a/deprecated/buildtools/buildsystem/extension/syslibs/test/centrep_copypctestfilev2.meta Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-# Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# centrep_copypctestfile.meta
-# Meta information for centrep_copypctestfile use
-#
-
-platform win32
-makefile gnumake
-techstream syslibs
--- a/deprecated/buildtools/buildsystem/extension/syslibs/test/centrep_copypctestfilev2.mk Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,238 +0,0 @@
-# Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# centrep_copypctestfile.mk
-#
-#
-
-TMPROOT:=$(subst \,/,$(EPOCROOT))
-EPOCROOT:=$(patsubst %/,%,$(TMPROOT))/
-
-include $(EPOCROOT)epoc32/tools/shell/$(notdir $(basename $(SHELL))).mk
-
-ifeq ($(findstring WINS,$(PLATFORM)),WINS)
- EPOCDATADIR = $(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)
-else
- EPOCDATADIR = $(EPOCROOT)epoc32/data
-endif
-
-SECURETARGETDIR = $(EPOCDATADIR)/z/private/10202BE9
-
-PCCENREPSOURCE = $(EXTENSION_ROOT)/../test
-PCCENREPDATADIR = $(EPOCROOT)epoc32/winscw/c/private/00000000
-PCCENREPTESTDIR = $(EPOCROOT)epoc32/winscw/c
-PCCENREPPCTESTDIR = $(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)
-
-$(SECURETARGETDIR) :
- $(call createdir, "$@")
-
-$(PCCENREPDATADIR) :
- $(call createdir, "$@")
-
-COPYFILES :
-ifneq ($(findstring TOOLS2,$(PLATFORM)),TOOLS2)
- $(call forcecopy,$(PCCENREPSOURCE)/000001ff.txt,$(SECURETARGETDIR)/000001ff.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/00001fff.crev2,$(SECURETARGETDIR)/00001fff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/000002ff.crev2,$(SECURETARGETDIR)/000002ff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/88888880.txt,$(SECURETARGETDIR)/88888880.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/88888881.cre,$(SECURETARGETDIR)/88888881.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/00004fff.cre,$(SECURETARGETDIR)/00004fff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/00022222.txt,$(SECURETARGETDIR)/00022222.txt)
-
-ifeq ($(findstring WINS,$(PLATFORM)),WINS)
- $(call forcecopy,$(PCCENREPSOURCE)/000001ff.txt,$(PCCENREPDATADIR)/000001ff.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/00001fff.crev2,$(PCCENREPDATADIR)/00001fff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/000002ff.crev2,$(PCCENREPDATADIR)/000002ff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/88888880.txt,$(PCCENREPDATADIR)/88888880.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/88888881.cre,$(PCCENREPDATADIR)/88888881.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/winscwcre.crev2,$(PCCENREPDATADIR)/ref_winscwcre.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/winscwtxt.crev2,$(PCCENREPDATADIR)/ref_winscwtxt.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/000001ff.txt,$(PCCENREPDATADIR)/copy000001ff.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/00001fff.crev2,$(PCCENREPDATADIR)/copy00001fff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/000002ff.crev2,$(PCCENREPDATADIR)/copy000002ff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/00004fff.cre,$(PCCENREPDATADIR)/00004fff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/00004fff.cre,$(PCCENREPDATADIR)/copy00004fff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/00022222.txt,$(PCCENREPDATADIR)/00022222.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/00022222.crev2,$(PCCENREPDATADIR)/copy00022222.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/000001ff.txt,$(PCCENREPTESTDIR)/000001ff.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/00001fff.crev2,$(PCCENREPTESTDIR)/00001fff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/00001fff.crev2,$(PCCENREPTESTDIR)/copy00001fff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/00004fff.cre,$(PCCENREPTESTDIR)/00004fff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/00004fff.cre,$(PCCENREPTESTDIR)/copy00004fff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/00022222.txt,$(PCCENREPTESTDIR)/00022222.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/00022222.crev2,$(PCCENREPTESTDIR)/copy00022222.cre)
-# Shared files between the t_cenreppc (WINSCW) and testsymcenrep (TOOLS2) tests.
- $(call forcecopy,$(PCCENREPSOURCE)/common_crc.txt,$(PCCENREPTESTDIR)/common_crc.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/common_ref_00022222.cre,$(PCCENREPDATADIR)/common_ref_00022222.cre)
-endif
-
-# TOOLS2
-else
- $(call forcecopy,$(PCCENREPSOURCE)/000001ff.txt,$(PCCENREPPCTESTDIR)/000001ff.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/00001fff.crev2,$(PCCENREPPCTESTDIR)/00001fff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/00004fff.cre,$(PCCENREPPCTESTDIR)/00004fff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/000001ff.txt,$(PCCENREPPCTESTDIR)/copy000001ff.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/00001fff.crev2,$(PCCENREPPCTESTDIR)/copy00001fff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/00004fff.cre,$(PCCENREPPCTESTDIR)/copy00004fff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/000002ff.crev2,$(PCCENREPPCTESTDIR)/000002ff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/000002ff.crev2,$(PCCENREPPCTESTDIR)/copy000002ff.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/winscwcre.crev2,$(PCCENREPPCTESTDIR)/ref_winscwcre.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/winscwtxt.crev2,$(PCCENREPPCTESTDIR)/ref_winscwtxt.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/88888880.txt,$(PCCENREPPCTESTDIR)/88888880.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/88888881.cre,$(PCCENREPPCTESTDIR)/88888881.cre)
- $(call forcecopy,$(PCCENREPSOURCE)/00022222.txt,$(PCCENREPPCTESTDIR)/00022222.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/00022222.crev2,$(PCCENREPPCTESTDIR)/copy00022222.cre)
-# Shared files between the t_cenreppc (WINSCW) and testsymcenrep (TOOLS2) tests.
- $(call forcecopy,$(PCCENREPSOURCE)/common_crc.txt,$(PCCENREPTESTDIR)/common_crc.txt)
- $(call forcecopy,$(PCCENREPSOURCE)/common_ref_00022222.cre,$(PCCENREPDATADIR)/common_ref_00022222.cre)
-endif
-
-DO_NOTHING:
- @echo do nothing
-
-#
-# The targets invoked by bld...
-#
-
-BLD : $(SECURETARGETDIR) $(PCCENREPDATADIR) $(PCCENREPTESTDIR) $(PCCENREPSOURCE) $(PCCENREPPCTESTDIR) COPYFILES
-
-CLEAN :
-
-ifneq ($(findstring TOOLS2,$(PLATFORM)),TOOLS2)
- $(call forceremove,$(SECURETARGETDIR)/000001ff.txt)
- $(call forceremove,$(SECURETARGETDIR)/00001fff.cre)
- $(call forceremove,$(SECURETARGETDIR)/000002ff.cre)
- $(call forceremove,$(SECURETARGETDIR)/88888880.txt)
- $(call forceremove,$(SECURETARGETDIR)/88888881.cre)
- $(call forceremove,$(SECURETARGETDIR)/00004fff.cre)
- $(call forceremove,$(SECURETARGETDIR)/00022222.txt)
-
-ifeq ($(findstring WINS,$(PLATFORM)),WINS)
- $(call forceremove,$(PCCENREPDATADIR)/000001ff.txt)
- $(call forceremove,$(PCCENREPDATADIR)/00001fff.cre)
- $(call forceremove,$(PCCENREPDATADIR)/000002ff.cre)
- $(call forceremove,$(PCCENREPDATADIR)/88888880.txt)
- $(call forceremove,$(PCCENREPDATADIR)/88888881.cre)
- $(call forceremove,$(PCCENREPDATADIR)/ref_winscwcre.cre)
- $(call forceremove,$(PCCENREPDATADIR)/ref_winscwtxt.cre)
- $(call forceremove,$(PCCENREPDATADIR)/copy000001ff.txt)
- $(call forceremove,$(PCCENREPDATADIR)/copy00001fff.cre)
- $(call forceremove,$(PCCENREPDATADIR)/copy000002ff.cre)
- $(call forceremove,$(PCCENREPDATADIR)/00004fff.cre)
- $(call forceremove,$(PCCENREPDATADIR)/copy00004fff.cre)
- $(call forceremove,$(PCCENREPDATADIR)/00022222.txt)
- $(call forceremove,$(PCCENREPDATADIR)/copy00022222.cre)
- $(call forceremove,$(PCCENREPTESTDIR)/000001ff.txt)
- $(call forceremove,$(PCCENREPTESTDIR)/00001fff.cre)
- $(call forceremove,$(PCCENREPTESTDIR)/copy00001fff.cre)
- $(call forceremove,$(PCCENREPTESTDIR)/00004fff.cre)
- $(call forceremove,$(PCCENREPTESTDIR)/copy00004fff.cre)
- $(call forceremove,$(PCCENREPTESTDIR)/00022222.txt)
- $(call forceremove,$(PCCENREPTESTDIR)/copy00022222.cre)
- $(call forceremove,$(PCCENREPTESTDIR)/common_crc.txt)
- $(call forceremove,$(PCCENREPDATADIR)/common_ref_00022222.cre)
-endif
-
-
-# TOOLS2
-else
- $(call forceremove,$(PCCENREPPCTESTDIR)/000001ff.txt)
- $(call forceremove,$(PCCENREPPCTESTDIR)/00001fff.cre)
- $(call forceremove,$(PCCENREPPCTESTDIR)/00004fff.cre)
- $(call forceremove,$(PCCENREPPCTESTDIR)/copy000001ff.txt)
- $(call forceremove,$(PCCENREPPCTESTDIR)/copy00001fff.cre)
- $(call forceremove,$(PCCENREPPCTESTDIR)/000002ff.cre)
- $(call forceremove,$(PCCENREPPCTESTDIR)/copy000002ff.cre)
- $(call forceremove,$(PCCENREPPCTESTDIR)/ref_winscwcre.cre)
- $(call forceremove,$(PCCENREPPCTESTDIR)/ref_winscwtxt.cre)
- $(call forceremove,$(PCCENREPPCTESTDIR)/88888880.txt)
- $(call forceremove,$(PCCENREPPCTESTDIR)/88888881.cre)
- $(call forceremove,$(PCCENREPPCTESTDIR)/00022222.txt)
- $(call forceremove,$(PCCENREPPCTESTDIR)/copy00022222.cre)
- $(call forceremove,$(PCCENREPPCTESTDIR)/copy00004fff.cre)
- $(call forceremove,$(PCCENREPTESTDIR)/common_crc.txt)
- $(call forceremove,$(PCCENREPDATADIR)/common_ref_00022222.cre)
-
-endif
-
-RELEASABLES :
-ifneq ($(findstring TOOLS2,$(PLATFORM)),TOOLS2)
- @echo $(SECURETARGETDIR)/000001ff.txt
- @echo $(SECURETARGETDIR)/00001fff.cre
- @echo $(SECURETARGETDIR)/000002ff.cre
- @echo $(SECURETARGETDIR)/88888880.txt
- @echo $(SECURETARGETDIR)/88888881.cre
- @echo $(SECURETARGETDIR)/00004fff.cre
- @echo $(SECURETARGETDIR)/00022222.txt
-
-ifeq ($(findstring WINS,$(PLATFORM)),WINS)
- @echo $(PCCENREPDATADIR)/000001ff.txt
- @echo $(PCCENREPDATADIR)/00001fff.cre
- @echo $(PCCENREPDATADIR)/000002ff.cre
- @echo $(PCCENREPDATADIR)/88888880.txt
- @echo $(PCCENREPDATADIR)/88888881.cre
- @echo $(PCCENREPDATADIR)/ref_winscwcre.cre
- @echo $(PCCENREPDATADIR)/ref_winscwtxt.cre
- @echo $(PCCENREPDATADIR)/copy000001ff.txt
- @echo $(PCCENREPDATADIR)/copy00001fff.cre
- @echo $(PCCENREPDATADIR)/copy000002ff.cre
- @echo $(PCCENREPDATADIR)/00004fff.cre
- @echo $(PCCENREPDATADIR)/copy00004fff.cre
- @echo $(PCCENREPDATADIR)/00022222.txt
- @echo $(PCCENREPDATADIR)/copy00022222.cre
- @echo $(PCCENREPTESTDIR)/000001ff.txt
- @echo $(PCCENREPTESTDIR)/00001fff.cre
- @echo $(PCCENREPTESTDIR)/copy00001fff.cre
- @echo $(PCCENREPTESTDIR)/00004fff.cre
- @echo $(PCCENREPTESTDIR)/copy00004fff.cre
- @echo $(PCCENREPTESTDIR)/00022222.txt
- @echo $(PCCENREPTESTDIR)/copy00022222.cre
- @echo $(PCCENREPTESTDIR)/common_crc.txt
- @echo $(PCCENREPDATADIR)/common_ref_00022222.cre
-endif
-
-# TOOLS2
-else
- @echo $(PCCENREPPCTESTDIR)/000001ff.txt
- @echo $(PCCENREPPCTESTDIR)/00001fff.cre
- @echo $(PCCENREPPCTESTDIR)/copy000001ff.txt
- @echo $(PCCENREPPCTESTDIR)/copy00001fff.cre
- @echo $(PCCENREPPCTESTDIR)/000002ff.cre
- @echo $(PCCENREPPCTESTDIR)/copy000002ff.cre
- @echo $(PCCENREPPCTESTDIR)/ref_winscwcre.cre
- @echo $(PCCENREPPCTESTDIR)/ref_winscwtxt.cre
- @echo $(PCCENREPPCTESTDIR)/88888880.txt
- @echo $(PCCENREPPCTESTDIR)/88888881.cre
- @echo $(PCCENREPPCTESTDIR)/00022222.txt
- @echo $(PCCENREPPCTESTDIR)/copy00022222.cre
- @echo $(PCCENREPPCTESTDIR)/copy00004fff.cre
- @echo $(PCCENREPTESTDIR)/common_crc.txt
- @echo $(PCCENREPDATADIR)/common_ref_00022222.cre
-
-endif
-
-MAKMAKE : DO_NOTHING
-
-RESOURCE : DO_NOTHING
-
-SAVESPACE : DO_NOTHING
-
-FREEZE : DO_NOTHING
-
-LIB : DO_NOTHING
-
-CLEANLIB : DO_NOTHING
-
-FINAL : DO_NOTHING
-
-ROMFILE : DO_NOTHING
--- a/deprecated/buildtools/buildsystem/extension/syslibs/test/ecom3_buildsis.meta Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-# Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# Meta information for the ecom3_buildsis extension template
-#
-
-platform win32
-makefile gnumake
-techstream syslibs
--- a/deprecated/buildtools/buildsystem/extension/syslibs/test/ecom3_buildsis.mk Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,60 +0,0 @@
-# Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# Params:
-# SOURCES - list of .pkg files
-# TARGET - not used
-# OPTION OUTDIR - mandatory, it is tef_ecomswi
-# OPTION INDIR - mandatory, path relative to bld.inf containing the
-# .pkg files.
-# OPTION CERTPEM - mandatory
-# OPTION CERTKEY - mandatory
-# OPTION STUBLIST - mandatory, identify stubs in $(SOURCES)
-# OPTION SCRIPTNAME - mandatory, perl script to build SIS. Must be in
-# same dir as .pkg files.
-#
-#
-
-TMPROOT:=$(subst \,/,$(EPOCROOT))
-EPOCROOT:=$(patsubst %/,%,$(TMPROOT))/
-
-
-include $(EPOCROOT)epoc32/tools/shell/$(notdir $(basename $(SHELL))).mk
-
-CERTPEM := $(subst /,$(/),$(CERTPEM))
-CERTKEY := $(subst /,$(/),$(CERTKEY))
-OUTDIR := $(subst /,$(/),$(OUTDIR))
-INDIR := $(subst /,$(/),$(INDIR))
-BASEDIR := $(EXTENSION_ROOT)/$(INDIR)
-
-TARGETS := $(shell perl $(BASEDIR)/$(SCRIPTNAME) -platform $(PLATFORM_PATH) -cfg $(CFG_PATH) -outdir $(OUTDIR) -maketrgt RELEASABLES -sources "$(SOURCES)" -stublist "$(STUBLIST)")
-EXTRA := $(shell perl $(BASEDIR)/$(SCRIPTNAME) -platform $(PLATFORM_PATH) -cfg $(CFG_PATH) -outdir $(OUTDIR) -maketrgt EXTRATARGET -sources "$(SOURCES)" -stublist "$(STUBLIST)")
-
-
-$(TARGETS) :
- @perl $(call slash2generic, $(BASEDIR)/$(SCRIPTNAME)) -basedir $(BASEDIR) -platform $(PLATFORM_PATH) -cfg $(CFG_PATH) -certpem $(CERTPEM) -certkey $(CERTKEY) -maketrgt FINAL $@
-
-#
-# The targets invoked by abld...
-#
-FINAL : $(TARGETS)
-
-BLD MAKMAKE SAVESPACE FREEZE LIB CLEANLIB RESOURCE :
- @echo do nothing
-
-CLEAN :
- -$(ERASE) $(TARGETS) $(EXTRA)
-
-RELEASABLES :
- @echo $(TARGETS) $(EXTRA)
-
--- a/deprecated/buildtools/buildsystem/extension/syslibs/test/ecom3_postbuild.meta Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# Meta information for ecom3_postbuild use
-#
-
-platform win32
-makefile gnumake
-techstream syslibs
--- a/deprecated/buildtools/buildsystem/extension/syslibs/test/ecom3_postbuild.mk Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,353 +0,0 @@
-# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-#
-
-TMPROOT:=$(subst \,/,$(EPOCROOT))
-EPOCROOT:=$(patsubst %/,%,$(TMPROOT))/
-
-include $(EPOCROOT)epoc32/tools/shell/$(notdir $(basename $(SHELL))).mk
-
-ifeq ($(findstring WINS,$(PLATFORM)),WINS)
-TARGETDIR=$(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)/z
-RAMONLYTARGETDIR=$(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)/z/ramonly
-SOURCEDIR=$(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)
-SOURCEDIR2=$(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)/z/resource/plugins
-else
-TARGETDIR=$(EPOCROOT)epoc32/data/z
-RAMONLYTARGETDIR=$(EPOCROOT)epoc32/data/z/ramonly
-SOURCEDIR=$(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)
-SOURCEDIR2=$(EPOCROOT)epoc32/data/z/resource/plugins
-endif
-
-DO_NOTHING:
- @echo do_nothing
-
-$(RAMONLYTARGETDIR) :
- $(call createdir,"$@")
-
-COPYFILES :
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/HeapTestImpl.dll $(TARGETDIR)/heaptestimpl.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/HeapTestImpl.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComExample5.dll $(RAMONLYTARGETDIR)/ecomexample5.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComExample5.dll $(RAMONLYTARGETDIR)/invalidsidplugin.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EComExample5.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComExample12.dll $(RAMONLYTARGETDIR)/ecomexample12.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EComExample12.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComExample12Upgraded.dll $(RAMONLYTARGETDIR)/ecomexample12Upgraded.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EComExample12Upgraded.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComExample12Downgraded.dll $(RAMONLYTARGETDIR)/ecomexample12Downgraded.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EComExample12Downgraded.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComExample14.dll $(RAMONLYTARGETDIR)/ecomexample14.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EComExample14.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComExample14Upgraded.dll $(RAMONLYTARGETDIR)/ecomexample14Upgraded.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EComExample14Upgraded.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComExample15.dll $(RAMONLYTARGETDIR)/ecomexample15.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EComExample15.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComExampleBadData.dll $(RAMONLYTARGETDIR)/ecomexamplebaddata.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EComExampleBadData.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComExampleBadData1.dll $(RAMONLYTARGETDIR)/ecomexamplebaddata1.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EComExampleBadData1.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComExampleBadData2.dll $(RAMONLYTARGETDIR)/ecomexamplebaddata2.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EComExampleBadData2.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComExample3.dll $(RAMONLYTARGETDIR)/ecomexample3.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComExample2.dll $(RAMONLYTARGETDIR)/ecomexample2.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComExample.dll $(RAMONLYTARGETDIR)/ecomexample.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComNullExample.dll $(RAMONLYTARGETDIR)/ecomnullexample.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComRomOnlyExampleOnC.dll $(RAMONLYTARGETDIR)/ecomromonlyexampleonc.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EComRomOnlyExampleOnC.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComRomRslvrExampleOnC.dll $(RAMONLYTARGETDIR)/ecomromrslvrexampleonc.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EComRomRslvrExampleOnC.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComRomRslvrExampleOnZ.dll $(RAMONLYTARGETDIR)/ecomromrslvrexampleonz.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/T_PlatSecResolverC.dll $(RAMONLYTARGETDIR)/t_platsecresolverc.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/T_PlatSecResolverC.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/T_PlatSecEcom4.dll $(RAMONLYTARGETDIR)/t_platsececom4.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/T_PlatSecEcom4.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EcomUpgradeExample1.dll $(RAMONLYTARGETDIR)/ecomupgradeexample1.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EcomUpgradeExample1.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EcomUpgradeExample2.dll $(RAMONLYTARGETDIR)/ecomupgradeexample2.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EcomUpgradeExample3.dll $(RAMONLYTARGETDIR)/ecomupgradeexample3.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EcomUpgradeExample3.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EcomUpgradeROExample1.dll $(RAMONLYTARGETDIR)/ecomupgraderoexample1.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EcomUpgradeROExample1.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EcomUpgradeROExample2.dll $(RAMONLYTARGETDIR)/ecomupgraderoexample2.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EcomUpgradeROExample3.dll $(RAMONLYTARGETDIR)/ecomupgraderoexample3.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EcomUpgradeROExample3.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/DefectPlugin.dll $(RAMONLYTARGETDIR)/defectplugin.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/DefectPlugin.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComExample7.dll $(RAMONLYTARGETDIR)/ecomexample7.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EComExample7.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComExample8.dll $(RAMONLYTARGETDIR)/ecomexample8.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EComExample8.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComCR629Example1.dll $(RAMONLYTARGETDIR)/ecomcr629example1.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EComCR629Example1.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComCR629Example2.dll $(RAMONLYTARGETDIR)/ecomcr629example2.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EComCR629Example2.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/LanguagePlugin.dll $(RAMONLYTARGETDIR)/languageplugin.dll)
- -$(ERASE) $(call slash2generic $(SOURCEDIR)/LanguagePlugin.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComHashExample.dll $(RAMONLYTARGETDIR)/ecomhashexample.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EComHashExample.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/EComSwiExample.dll $(RAMONLYTARGETDIR)/ecomswiexample.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/EComSwiExample.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/exampleNine.dll $(RAMONLYTARGETDIR)/examplenine.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/exampleNine.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR)/dummycustomresolver1.dll $(RAMONLYTARGETDIR)/dummycustomresolver1.dll)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/dummycustomresolver1.dll)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/HeapTestImpl.rsc $(TARGETDIR)/heaptestimpl.rsc)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/HeapTestImpl.rsc $(RAMONLYTARGETDIR)/invalidsidplugin.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/HeapTestImpl.rsc)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComExample5.RSC $(RAMONLYTARGETDIR)/ecomexample5.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/EComExample5.RSC)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComExample12.RSC $(RAMONLYTARGETDIR)/ecomexample12.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/EComExample12.RSC)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComExample12Upgraded.RSC $(RAMONLYTARGETDIR)/ecomexample12Upgraded.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/EComExample12Upgraded.RSC)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComExample12Downgraded.RSC $(RAMONLYTARGETDIR)/ecomexample12Downgraded.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/EComExample12Downgraded.RSC)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComExample14.RSC $(RAMONLYTARGETDIR)/ecomexample14.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/EComExample14.RSC)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComExample14Upgraded.RSC $(RAMONLYTARGETDIR)/ecomexample14Upgraded.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/EComExample14Upgraded.RSC)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComExample15.RSC $(RAMONLYTARGETDIR)/ecomexample15.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/EComExample15.RSC)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComExampleBadData.RSC $(RAMONLYTARGETDIR)/ecomexamplebaddata.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/EComExampleBadData.RSC)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComExampleBadData1.RSC $(RAMONLYTARGETDIR)/ecomexamplebaddata1.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/EComExampleBadData1.RSC)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComExampleBadData2.RSC $(RAMONLYTARGETDIR)/ecomexamplebaddata2.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/EComExampleBadData2.RSC)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComExample3.RSC $(RAMONLYTARGETDIR)/ecomexample3.rsc)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComExample2.RSC $(RAMONLYTARGETDIR)/ecomexample2.rsc)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComExample.RSC $(RAMONLYTARGETDIR)/ecomexample.rsc)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComRomOnlyExampleOnC.RSC $(RAMONLYTARGETDIR)/ecomromonlyexampleonc.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/EComRomOnlyExampleOnC.RSC)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComRomRslvrExampleOnC.RSC $(RAMONLYTARGETDIR)/ecomromrslvrexampleonc.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/EComRomRslvrExampleOnC.RSC)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComRomRslvrExampleOnZ.RSC $(RAMONLYTARGETDIR)/ecomromrslvrexampleonz.rsc)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/T_PlatSecResolverC.RSC $(RAMONLYTARGETDIR)/t_platsecresolverc.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/T_PlatSecResolverC.RSC)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/T_PlatSecEcom4.RSC $(RAMONLYTARGETDIR)/t_platsececom4.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/T_PlatSecEcom4.RSC)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EcomNullExample.RSC $(RAMONLYTARGETDIR)/ecomnullexample.rsc)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EcomUpgradeExample1.rsc $(RAMONLYTARGETDIR)/ecomupgradeexample1.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/EcomUpgradeExample1.rsc)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EcomUpgradeExample2.rsc $(RAMONLYTARGETDIR)/ecomupgradeexample2.rsc)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EcomUpgradeExample3.rsc $(RAMONLYTARGETDIR)/ecomupgradeexample3.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/EcomUpgradeExample3.rsc)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EcomUpgradeROExample1.rsc $(RAMONLYTARGETDIR)/ecomupgraderoexample1.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/EcomUpgradeROExample1.rsc)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EcomUpgradeROExample2.rsc $(RAMONLYTARGETDIR)/ecomupgraderoexample2.rsc)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EcomUpgradeROExample3.rsc $(RAMONLYTARGETDIR)/ecomupgraderoexample3.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/EcomUpgradeROExample3.rsc)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/DefectPlugin.rsc $(RAMONLYTARGETDIR)/defectplugin.rsc)
- -$(ERASE) $(SOURCEDIR2)/DefectPlugin.rsc)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComExample7.rsc $(RAMONLYTARGETDIR)/ecomexample7.rsc)
- -$(ERASE) $(SOURCEDIR2)/EComExample7.rsc)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComExample8.rsc $(RAMONLYTARGETDIR)/ecomexample8.rsc)
- -$(ERASE) $(SOURCEDIR2)/EComExample8.rsc)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComCR629Example1.rsc $(RAMONLYTARGETDIR)/ecomcr629example1.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/EComCR629Example1.rsc)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComCR629Example2.rsc $(RAMONLYTARGETDIR)/ecomcr629example2.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/EComCR629Example2.rsc)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/LanguagePlugin.rsc $(RAMONLYTARGETDIR)/languageplugin.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/LanguagePlugin.rsc)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/LanguagePlugin.r01 $(RAMONLYTARGETDIR)/languageplugin.r01)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/LanguagePlugin.r01)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/LanguagePlugin.r02 $(RAMONLYTARGETDIR)/languageplugin.r02)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/LanguagePlugin.r02)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/LanguagePlugin.r03 $(RAMONLYTARGETDIR)/languageplugin.r03)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/LanguagePlugin.r03)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComHashExample.rsc $(RAMONLYTARGETDIR)/ecomhashexample.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/EComHashExample.rsc)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/EComSwiExample.rsc $(RAMONLYTARGETDIR)/ecomswiexample.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/EComSwiExample.rsc)
- $(CP) /B $(call slash2generic, $(SOURCEDIR2)/dummycustomresolver1.rsc $(RAMONLYTARGETDIR)/dummycustomresolver1.rsc)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR2)/dummycustomresolver1.rsc)
-
-#
-# The targets invoked by bld...
-#
-
-MAKMAKE : DO_NOTHING
-
-BLD : $(RAMONLYTARGETDIR) COPYFILES
-
-CLEAN :
- -$(ERASE) $(call slash2generic, $(TARGETDIR)/heaptestimpl.dll)
- -$(ERASE) $(call slash2generic, $(TARGETDIR)/heaptestimpl.rsc )
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample5.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample12.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample12Upgraded.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample12Downgraded.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample14.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample14Upgraded.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample15.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexamplebaddata.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexamplebaddata1.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexamplebaddata2.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample3.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample2.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample.rsc )
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomromonlyexampleonc.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomromrslvrexampleonc.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomromrslvrexampleonz.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample5.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample12.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample12Upgraded.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample12Downgraded.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample14.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample14Upgraded.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample15.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexamplebaddata.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexamplebaddata1.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexamplebaddata2.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample3.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample2.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomromonlyexampleonc.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomromrslvrexampleonc.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomromrslvrexampleonz.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/invalidsidplugin.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/invalidsidplugin.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/t_platsecresolverc.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/t_platsecresolverc.rsc )
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/t_platsececom4.dll )
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/t_platsececom4.rsc)
-
-
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomnullexample.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomnullexample.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomupgradeexample1.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomupgradeexample1.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomupgradeexample2.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomupgradeexample2.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomupgradeexample3.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomupgradeexample3.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomupgraderoexample1.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomupgraderoexample1.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomupgraderoexample2.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomupgraderoexample2.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomupgraderoexample3.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomupgraderoexample3.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/defectplugin.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/defectplugin.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample7.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample7.rsc )
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample8.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomexample8.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomcr629example1.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomcr629example1.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomcr629example2.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomcr629example2.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/languageplugin.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/languageplugin.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/languageplugin.r01)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/languageplugin.r02)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/languageplugin.r03)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomhashexample.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomhashexample.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomswiexample.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/ecomswiexample.rsc)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/examplenine.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/dummycustomresolver1.dll)
- -$(ERASE) $(call slash2generic, $(RAMONLYTARGETDIR)/dummycustomresolver1.rsc)
-
-SAVESPACE : DO_NOTHING
-
-RESOURCE : DO_NOTHING
-
-FREEZE : DO_NOTHING
-
-LIB : DO_NOTHING
-
-CLEANLIB : DO_NOTHING
-
-FINAL : DO_NOTHING
-
-RELEASABLES :
- @echo $(TARGETDIR)/heaptestimpl.dll
- @echo $(TARGETDIR)/heaptestimpl.rsc
- @echo $(RAMONLYTARGETDIR)/ecomexample5.rsc
- @echo $(RAMONLYTARGETDIR)/ecomexample12.rsc
- @echo $(RAMONLYTARGETDIR)/ecomexample12Upgraded.rsc
- @echo $(RAMONLYTARGETDIR)/ecomexample12Downgraded.rsc
- @echo $(RAMONLYTARGETDIR)/ecomexample14.rsc
- @echo $(RAMONLYTARGETDIR)/ecomexample14Upgraded.rsc
- @echo $(RAMONLYTARGETDIR)/ecomexample15.rsc
- @echo $(RAMONLYTARGETDIR)/ecomexamplebaddata.rsc
- @echo $(RAMONLYTARGETDIR)/ecomexamplebaddata1.rsc
- @echo $(RAMONLYTARGETDIR)/ecomexamplebaddata2.rsc
- @echo $(RAMONLYTARGETDIR)/ecomexample3.rsc
- @echo $(RAMONLYTARGETDIR)/ecomexample2.rsc
- @echo $(RAMONLYTARGETDIR)/ecomexample.rsc
- @echo $(RAMONLYTARGETDIR)/ecomromonlyexampleonc.rsc
- @echo $(RAMONLYTARGETDIR)/ecomromrslvrexampleonc.rsc
- @echo $(RAMONLYTARGETDIR)/ecomromrslvrexampleonz.rsc
- @echo $(RAMONLYTARGETDIR)/ecomexample5.dll
- @echo $(RAMONLYTARGETDIR)/ecomexample12.dll
- @echo $(RAMONLYTARGETDIR)/ecomexample12Upgraded.dll
- @echo $(RAMONLYTARGETDIR)/ecomexample12Downgraded.dll
- @echo $(RAMONLYTARGETDIR)/ecomexample14.dll
- @echo $(RAMONLYTARGETDIR)/ecomexample14Upgraded.dll
- @echo $(RAMONLYTARGETDIR)/ecomexample15.dll
- @echo $(RAMONLYTARGETDIR)/ecomexamplebaddata.dll
- @echo $(RAMONLYTARGETDIR)/ecomexamplebaddata1.dll
- @echo $(RAMONLYTARGETDIR)/ecomexamplebaddata2.dll
- @echo $(RAMONLYTARGETDIR)/ecomexample3.dll
- @echo $(RAMONLYTARGETDIR)/ecomexample2.dll
- @echo $(RAMONLYTARGETDIR)/ecomexample.dll
- @echo $(RAMONLYTARGETDIR)/ecomromonlyexampleonc.dll
- @echo $(RAMONLYTARGETDIR)/ecomromrslvrexampleonc.dll
- @echo $(RAMONLYTARGETDIR)/ecomromrslvrexampleonz.dll
- @echo $(RAMONLYTARGETDIR)/invalidsidplugin.rsc
- @echo $(RAMONLYTARGETDIR)/invalidsidplugin.dll
- @echo $(RAMONLYTARGETDIR)/t_platsecresolverc.dll
- @echo $(RAMONLYTARGETDIR)/t_platsecresolverc.rsc
- @echo $(RAMONLYTARGETDIR)/t_platsececom4.dll
- @echo $(RAMONLYTARGETDIR)/t_platsececom4.rsc
- @echo $(RAMONLYTARGETDIR)/ecomnullexample.dll
- @echo $(RAMONLYTARGETDIR)/ecomnullexample.rsc
- @echo $(RAMONLYTARGETDIR)/ecomupgradeexample1.dll
- @echo $(RAMONLYTARGETDIR)/ecomupgradeexample1.rsc
- @echo $(RAMONLYTARGETDIR)/ecomupgradeexample2.dll
- @echo $(RAMONLYTARGETDIR)/ecomupgradeexample2.rsc
- @echo $(RAMONLYTARGETDIR)/ecomupgradeexample3.dll
- @echo $(RAMONLYTARGETDIR)/ecomupgradeexample3.rsc
- @echo $(RAMONLYTARGETDIR)/ecomupgraderoexample1.dll
- @echo $(RAMONLYTARGETDIR)/ecomupgraderoexample1.rsc
- @echo $(RAMONLYTARGETDIR)/ecomupgraderoexample2.dll
- @echo $(RAMONLYTARGETDIR)/ecomupgraderoexample2.rsc
- @echo $(RAMONLYTARGETDIR)/ecomupgraderoexample3.dll
- @echo $(RAMONLYTARGETDIR)/ecomupgraderoexample3.rsc
- @echo $(RAMONLYTARGETDIR)/defectplugin.dll
- @echo $(RAMONLYTARGETDIR)/defectplugin.rsc
- @echo $(RAMONLYTARGETDIR)/ecomexample7.dll
- @echo $(RAMONLYTARGETDIR)/ecomexample7.rsc
- @echo $(RAMONLYTARGETDIR)/ecomexample8.dll
- @echo $(RAMONLYTARGETDIR)/ecomexample8.rsc
- @echo $(RAMONLYTARGETDIR)/ecomcr629example1.dll
- @echo $(RAMONLYTARGETDIR)/ecomcr629example1.rsc
- @echo $(RAMONLYTARGETDIR)/ecomcr629example2.dll
- @echo $(RAMONLYTARGETDIR)/ecomcr629example2.rsc
- @echo $(RAMONLYTARGETDIR)/languageplugin.dll
- @echo $(RAMONLYTARGETDIR)/languageplugin.rsc
- @echo $(RAMONLYTARGETDIR)/languageplugin.r01
- @echo $(RAMONLYTARGETDIR)/languageplugin.r02
- @echo $(RAMONLYTARGETDIR)/languageplugin.r03
- @echo $(RAMONLYTARGETDIR)/ecomhashexample.dll
- @echo $(RAMONLYTARGETDIR)/ecomhashexample.rsc
- @echo $(RAMONLYTARGETDIR)/ecomswiexample.dll
- @echo $(RAMONLYTARGETDIR)/ecomswiexample.rsc
- @echo $(RAMONLYTARGETDIR)/examplenine.dll
- @echo $(RAMONLYTARGETDIR)/dummycustomresolver1.dll
- @echo $(RAMONLYTARGETDIR)/dummycustomresolver1.rsc
--- a/deprecated/buildtools/buildsystem/extension/syslibs/test/ecom3_relocatetarget.meta Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-# Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# Meta information for the ecom3_relocatetarget extension template
-#
-
-platform win32
-makefile gnumake
-techstream syslibs
--- a/deprecated/buildtools/buildsystem/extension/syslibs/test/ecom3_relocatetarget.mk Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,74 +0,0 @@
-# Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# Different from ecom3_postbuild.mk in that on armv5 the RAMONLYTARGETDIR
-# is not \epoc32\data\z\ramonly. It is \epoc32\release\armv5\<CFG>\z\ramonly.
-# This template has to preserve the udeb/urel targets.
-# Params:
-# SOURCES - list of .exe and .dll files to relocate
-# TARGET - not used
-# OPTION TARGETDIR - mandatory, it is "ramonly" for ecom testing.
-# OPTION TARGETBASE - optional, overrides \epoc32\release\<platform>\<cfg>\z
-# OPTION SOURCEDIR - optional, overrides \epoc32\release\<platform>\<cfg>
-#
-#
-
-TMPROOT:=$(subst \,/,$(EPOCROOT))
-EPOCROOT:=$(patsubst %/,%,$(TMPROOT))/
-
-include $(EPOCROOT)epoc32/tools/shell/$(notdir $(basename $(SHELL))).mk
-
-# $(/) is actually back slash in Windows environment. Since bld.inf are written
-# with forward slashes and $(CP) is "copy", this substitution is important.
-TARGETDIR := $(subst /,$(/),$(TARGETDIR))
-
-ifdef TARGETBASE
-TARGETBASE := $(subst PLATFORM,$(PLATFORM_PATH),$(TARGETBASE))
-TARGETBASE := $(subst CFG,$(CFG_PATH),$(TARGETBASE))
-TARGETBASE := $(subst /,$(/),$(TARGETBASE))
-DESTDIR:=$(TARGETBASE)/$(TARGETDIR)
-else
-DESTDIR:=$(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)/z/$(TARGETDIR)
-endif
-
-ifdef SOURCEDIR
-SOURCEDIR := $(subst PLATFORM,$(PLATFORM_PATH),$(SOURCEDIR))
-SOURCEDIR := $(subst CFG,$(CFG_PATH),$(SOURCEDIR))
-SOURCEDIR := $(subst /,$(/),$(SOURCEDIR))
-else
-SOURCEDIR := $(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)
-endif
-
-TARGET_COPY := $(foreach f,$(SOURCES),$(DESTDIR)/$(f) )
-
-$(DESTDIR) :
- $(call createdir,"$@")
-
-$(TARGET_COPY) :
- $(CP) $(call slash2generic, $(SOURCEDIR)/$(notdir $@) $@)
- -$(ERASE) $(call slash2generic, $(SOURCEDIR)/$(notdir $@))
-
-#
-# The targets invoked by abld...
-#
-BLD : $(DESTDIR) $(TARGET_COPY)
-
-MAKMAKE SAVESPACE FREEZE LIB CLEANLIB RESOURCE FINAL :
- @echo do nothing
-
-CLEAN :
- -$(ERASE) $(TARGET_COPY)
-
-RELEASABLES :
- @echo $(TARGET_COPY)
-
--- a/deprecated/buildtools/buildsystem/extension/syslibs/test/featmgr_moveplugin.meta Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,20 +0,0 @@
-# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-# template.meta
-# Meta information for template use
-#
-
-platform win32
-makefile gnumake
-techstream syslibs
--- a/deprecated/buildtools/buildsystem/extension/syslibs/test/featmgr_moveplugin.mk Thu Oct 28 11:39:28 2010 +0800
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,162 +0,0 @@
-# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
-# All rights reserved.
-# This component and the accompanying materials are made available
-# under the terms of "Eclipse Public License v1.0"
-# which accompanies this distribution, and is available
-# at the URL "http://www.eclipse.org/legal/epl-v10.html".
-#
-# Initial Contributors:
-# Nokia Corporation - initial contribution.
-#
-# Contributors:
-#
-# Description:
-#
-
-TMPROOT:=$(subst \,/,$(EPOCROOT))
-EPOCROOT:=$(patsubst %/,%,$(TMPROOT))/
-
-include $(EPOCROOT)epoc32/tools/shell/$(notdir $(basename $(SHELL))).mk
-
-ifeq ($(findstring WINS,$(PLATFORM)),WINS)
- EPOCDATADIR:=$(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)
-else
- EPOCDATADIR:=$(EPOCROOT)epoc32/data
-endif
-
-BINSOURCEDIR:=$(EPOCROOT)epoc32/release/$(PLATFORM_PATH)/$(CFG_PATH)
-RESOURCESOURCEDIR:=$(EPOCDATADIR)/z/resource/plugins
-
-FILE1:=normal_plugin.dll
-FILE2:=hanging_plugin.dll
-FILE3:=corrupt_plugin.dll
-FILE4:=reconciliation_plugin.dll
-FILE5:=ab_normal_plugin.dll
-FILE6:=bc_enhanced_plugin.dll
-FILE7:=slowstart_plugin.dll
-FILE8:=invalid_plugin.dll
-FILE9:=normal_plugin.rsc
-FILE10:=hanging_plugin.rsc
-FILE11:=corrupt_plugin.rsc
-FILE12:=reconciliation_plugin.rsc
-FILE13:=ab_normal_plugin.rsc
-FILE14:=bc_enhanced_plugin.rsc
-FILE15:=slowstart_plugin.rsc
-FILE16:=invalid_plugin.rsc
-
-TARGETDIR:=$(EPOCDATADIR)/z/test/efm/plugins
-# we copy the normal plugin files to the resource folder on C: drive for the plugin ignoring test
-PLUGINTARGETDIR:=$(EPOCROOT)epoc32/winscw/c/sys/bin
-RESOURCETARGETDIR:=$(EPOCROOT)epoc32/winscw/c/resource/plugins
-
-$(TARGETDIR) :
- $(call createdir,"$@")
-
-$(PLUGINTARGETDIR) :
- $(call createdir,"$@")
-
-$(RESOURCETARGETDIR) :
- $(call createdir,"$@")
-
-COPYFILES : $(TARGETDIR) $(PLUGINTARGETDIR) $(RESOURCETARGETDIR)
- $(call forcecopy,$(BINSOURCEDIR)/$(FILE1),$(TARGETDIR)/$(FILE1))
- $(call forcecopy,$(BINSOURCEDIR)/$(FILE1),$(PLUGINTARGETDIR)/$(FILE1))
- $(call forcecopy,$(BINSOURCEDIR)/$(FILE2),$(TARGETDIR)/$(FILE2))
- $(call forcecopy,$(BINSOURCEDIR)/$(FILE3),$(TARGETDIR)/$(FILE3))
- $(call forcecopy,$(BINSOURCEDIR)/$(FILE4),$(TARGETDIR)/$(FILE4))
- $(call forcecopy,$(BINSOURCEDIR)/$(FILE5),$(TARGETDIR)/$(FILE5))
- $(call forcecopy,$(BINSOURCEDIR)/$(FILE6),$(TARGETDIR)/$(FILE6))
- $(call forcecopy,$(BINSOURCEDIR)/$(FILE7),$(TARGETDIR)/$(FILE7))
- $(call forcecopy,$(BINSOURCEDIR)/$(FILE8),$(TARGETDIR)/$(FILE8))
- $(call forcecopy,$(RESOURCESOURCEDIR)/$(FILE9),$(TARGETDIR)/$(FILE9))
- $(call forcecopy,$(RESOURCESOURCEDIR)/$(FILE9),$(RESOURCETARGETDIR)/$(FILE9))
- $(call forcecopy,$(RESOURCESOURCEDIR)/$(FILE10),$(TARGETDIR)/$(FILE10))
- $(call forcecopy,$(RESOURCESOURCEDIR)/$(FILE11),$(TARGETDIR)/$(FILE11))
- $(call forcecopy,$(RESOURCESOURCEDIR)/$(FILE12),$(TARGETDIR)/$(FILE12))
- $(call forcecopy,$(RESOURCESOURCEDIR)/$(FILE13),$(TARGETDIR)/$(FILE13))
- $(call forcecopy,$(RESOURCESOURCEDIR)/$(FILE14),$(TARGETDIR)/$(FILE14))
- $(call forcecopy,$(RESOURCESOURCEDIR)/$(FILE15),$(TARGETDIR)/$(FILE15))
- $(call forcecopy,$(RESOURCESOURCEDIR)/$(FILE16),$(TARGETDIR)/$(FILE16))
-
-ERASEFILES : $(call slash2generic,$(foreach FILE, $(FILE1) $(FILE2) $(FILE3) $(FILE4) $(FILE5) $(FILE6) $(FILE7) $(FILE8), $(TARGETDIR)/$(FILE)) $(PLUGINTARGETDIR)/$(FILE1))
- $(call forceremove,$(BINSOURCEDIR)/$(FILE1))
- $(call forceremove,$(BINSOURCEDIR)/$(FILE2))
- $(call forceremove,$(BINSOURCEDIR)/$(FILE3))
- $(call forceremove,$(BINSOURCEDIR)/$(FILE4))
- $(call forceremove,$(BINSOURCEDIR)/$(FILE5))
- $(call forceremove,$(BINSOURCEDIR)/$(FILE6))
- $(call forceremove,$(BINSOURCEDIR)/$(FILE7))
- $(call forceremove,$(BINSOURCEDIR)/$(FILE8))
-
-DO_NOTHING:
- @echo do nothing
-
-#
-# The targets invoked by bld...
-#
-
-BLD : DO_NOTHING
-
-CLEAN :
- $(call forceremove,$(TARGETDIR)/$(FILE1))
- $(call forceremove,$(PLUGINTARGETDIR)/$(FILE1))
- $(call forceremove,$(TARGETDIR)/$(FILE2))
- $(call forceremove,$(TARGETDIR)/$(FILE3))
- $(call forceremove,$(TARGETDIR)/$(FILE4))
- $(call forceremove,$(TARGETDIR)/$(FILE5))
- $(call forceremove,$(TARGETDIR)/$(FILE6))
- $(call forceremove,$(TARGETDIR)/$(FILE7))
- $(call forceremove,$(TARGETDIR)/$(FILE8))
- $(call forceremove,$(TARGETDIR)/$(FILE9))
- $(call forceremove,$(RESOURCETARGETDIR)/$(FILE9))
- $(call forceremove,$(TARGETDIR)/$(FILE10))
- $(call forceremove,$(TARGETDIR)/$(FILE11))
- $(call forceremove,$(TARGETDIR)/$(FILE12))
- $(call forceremove,$(TARGETDIR)/$(FILE13))
- $(call forceremove,$(TARGETDIR)/$(FILE14))
- $(call forceremove,$(TARGETDIR)/$(FILE15))
- $(call forceremove,$(TARGETDIR)/$(FILE16))
- $(call forceremove,$(RESOURCESOURCEDIR)/$(FILE9))
- $(call forceremove,$(RESOURCESOURCEDIR)/$(FILE10))
- $(call forceremove,$(RESOURCESOURCEDIR)/$(FILE11))
- $(call forceremove,$(RESOURCESOURCEDIR)/$(FILE12))
- $(call forceremove,$(RESOURCESOURCEDIR)/$(FILE13))
- $(call forceremove,$(RESOURCESOURCEDIR)/$(FILE14))
- $(call forceremove,$(RESOURCESOURCEDIR)/$(FILE15))
- $(call forceremove,$(RESOURCESOURCEDIR)/$(FILE16))
-
-RELEASABLES :
- @echo $(TARGETDIR)/$(FILE1)
- @echo $(PLUGINTARGETDIR)/$(FILE1)
- @echo $(TARGETDIR)/$(FILE2)
- @echo $(TARGETDIR)/$(FILE3)
- @echo $(TARGETDIR)/$(FILE4)
- @echo $(TARGETDIR)/$(FILE5)
- @echo $(TARGETDIR)/$(FILE6)
- @echo $(TARGETDIR)/$(FILE7)
- @echo $(TARGETDIR)/$(FILE8)
- @echo $(TARGETDIR)/$(FILE9)
- @echo $(RESOURCETARGETDIR)/$(FILE9)
- @echo $(TARGETDIR)/$(FILE10)
- @echo $(TARGETDIR)/$(FILE11)
- @echo $(TARGETDIR)/$(FILE12)
- @echo $(TARGETDIR)/$(FILE13)
- @echo $(TARGETDIR)/$(FILE14)
- @echo $(TARGETDIR)/$(FILE15)
- @echo $(TARGETDIR)/$(FILE16)
-
-MAKMAKE : DO_NOTHING
-
-SAVESPACE : DO_NOTHING
-
-LIB : DO_NOTHING
-
-CLEANLIB : DO_NOTHING
-
-FREEZE : DO_NOTHING
-
-RESOURCE : DO_NOTHING
-
-FINAL : COPYFILES ERASEFILES
-
-ROMFILE : DO_NOTHING
--- a/deprecated/buildtools/buildsystem/group/bld.inf Thu Oct 28 11:39:28 2010 +0800
+++ b/deprecated/buildtools/buildsystem/group/bld.inf Fri Oct 29 10:03:48 2010 +0800
@@ -24,16 +24,6 @@
../extension/app-services/buildupgradesis.mk /epoc32/tools/makefile_templates/app-services/buildupgradesis.mk
../extension/application-protocols/buildstubsis.meta /epoc32/tools/makefile_templates/application-protocols/buildstubsis.meta
../extension/application-protocols/buildstubsis.mk /epoc32/tools/makefile_templates/application-protocols/buildstubsis.mk
-../extension/base/bootstrap.meta /epoc32/tools/makefile_templates/base/bootstrap.meta
-../extension/base/bootstrap.mk /epoc32/tools/makefile_templates/base/bootstrap.mk
-../extension/base/bootstrap.flm /epoc32/tools/makefile_templates/base/bootstrap.flm
-../extension/base/bootstrap.xml /epoc32/tools/makefile_templates/base/bootstrap.xml
-../extension/base/config.meta /epoc32/tools/makefile_templates/base/config.meta
-../extension/base/config.mk /epoc32/tools/makefile_templates/base/config.mk
-../extension/base/copy_default.meta /epoc32/tools/makefile_templates/base/copy_default.meta
-../extension/base/copy_default.mk /epoc32/tools/makefile_templates/base/copy_default.mk
-../extension/base/genexec.meta /epoc32/tools/makefile_templates/base/genexec.meta
-../extension/base/genexec.mk /epoc32/tools/makefile_templates/base/genexec.mk
../extension/base/h2_genbootinc.meta /epoc32/tools/makefile_templates/base/h2_genbootinc.meta
../extension/base/h2_genbootinc.mk /epoc32/tools/makefile_templates/base/h2_genbootinc.mk
../extension/base/h2_restricted_coreldr.meta /epoc32/tools/makefile_templates/base/h2_restricted_coreldr.meta
@@ -64,11 +54,6 @@
../extension/base/lab_restricted_miniboot.xml /epoc32/tools/makefile_templates/base/lab_restricted_miniboot.xml
../extension/base/ne1_tb_restricted_coreldr.flm /epoc32/tools/makefile_templates/base/ne1_tb_restricted_coreldr.flm
../extension/base/ne1_tb_restricted_coreldr.xml /epoc32/tools/makefile_templates/base/ne1_tb_restricted_coreldr.xml
-../extension/base/base_rvct_common.mk /epoc32/tools/makefile_templates/base/base_rvct_common.mk
-../extension/converged-comms/createcommdbs.meta /epoc32/tools/makefile_templates/converged-comms/createcommdbs.meta
-../extension/converged-comms/createcommdbs.mk /epoc32/tools/makefile_templates/converged-comms/createcommdbs.mk
-../extension/converged-comms/installdefaultcommdb.meta /epoc32/tools/makefile_templates/converged-comms/installdefaultcommdb.meta
-../extension/converged-comms/installdefaultcommdb.mk /epoc32/tools/makefile_templates/converged-comms/installdefaultcommdb.mk
../extension/security/upsserver.meta /epoc32/tools/makefile_templates/security/upsserver.meta
../extension/security/upsserver.mk /epoc32/tools/makefile_templates/security/upsserver.mk
../extension/syslibs/conversiontable.meta /epoc32/tools/makefile_templates/syslibs/conversiontable.meta
@@ -94,32 +79,12 @@
../extension/app-services/tzlocaltestserver.meta /epoc32/tools/makefile_templates/app-services/tzlocaltestserver.meta
../extension/app-services/tzlocaltestserver.mk /epoc32/tools/makefile_templates/app-services/tzlocaltestserver.mk
-../extension/syslibs/test/bafl_copytestfiles.meta /epoc32/tools/makefile_templates/syslibs/test/bafl_copytestfiles.meta
-../extension/syslibs/test/bafl_copytestfiles.mk /epoc32/tools/makefile_templates/syslibs/test/bafl_copytestfiles.mk
-../extension/syslibs/test/bafl_resource_files.meta /epoc32/tools/makefile_templates/syslibs/test/bafl_resource_files.meta
-../extension/syslibs/test/bafl_resource_files.mk /epoc32/tools/makefile_templates/syslibs/test/bafl_resource_files.mk
-../extension/syslibs/test/centrep_copydatfile.meta /epoc32/tools/makefile_templates/syslibs/test/centrep_copydatfile.meta
-../extension/syslibs/test/centrep_copydatfile.mk /epoc32/tools/makefile_templates/syslibs/test/centrep_copydatfile.mk
-../extension/syslibs/test/centrep_copyincentrepsrv.meta /epoc32/tools/makefile_templates/syslibs/test/centrep_copyincentrepsrv.meta
-../extension/syslibs/test/centrep_copyincentrepsrv.mk /epoc32/tools/makefile_templates/syslibs/test/centrep_copyincentrepsrv.mk
-../extension/syslibs/test/centrep_copypctestfile.meta /epoc32/tools/makefile_templates/syslibs/test/centrep_copypctestfile.meta
-../extension/syslibs/test/centrep_copypctestfile.mk /epoc32/tools/makefile_templates/syslibs/test/centrep_copypctestfile.mk
-../extension/syslibs/test/centrep_copypctestfilev2.meta /epoc32/tools/makefile_templates/syslibs/test/centrep_copypctestfilev2.meta
-../extension/syslibs/test/centrep_copypctestfilev2.mk /epoc32/tools/makefile_templates/syslibs/test/centrep_copypctestfilev2.mk
../extension/syslibs/test/charconv_testpostbuild.meta /epoc32/tools/makefile_templates/syslibs/test/charconv_testpostbuild.meta
../extension/syslibs/test/charconv_testpostbuild.mk /epoc32/tools/makefile_templates/syslibs/test/charconv_testpostbuild.mk
../extension/syslibs/test/charconv_tiso8859x_generate_cpp.meta /epoc32/tools/makefile_templates/syslibs/test/charconv_tiso8859x_generate_cpp.meta
../extension/syslibs/test/charconv_tiso8859x_generate_cpp.mk /epoc32/tools/makefile_templates/syslibs/test/charconv_tiso8859x_generate_cpp.mk
../extension/syslibs/test/charconv_tsnmdata.meta /epoc32/tools/makefile_templates/syslibs/test/charconv_tsnmdata.meta
../extension/syslibs/test/charconv_tsnmdata.mk /epoc32/tools/makefile_templates/syslibs/test/charconv_tsnmdata.mk
-../extension/syslibs/test/ecom3_buildsis.meta /epoc32/tools/makefile_templates/syslibs/test/ecom3_buildsis.meta
-../extension/syslibs/test/ecom3_buildsis.mk /epoc32/tools/makefile_templates/syslibs/test/ecom3_buildsis.mk
-../extension/syslibs/test/ecom3_postbuild.meta /epoc32/tools/makefile_templates/syslibs/test/ecom3_postbuild.meta
-../extension/syslibs/test/ecom3_postbuild.mk /epoc32/tools/makefile_templates/syslibs/test/ecom3_postbuild.mk
-../extension/syslibs/test/ecom3_relocatetarget.meta /epoc32/tools/makefile_templates/syslibs/test/ecom3_relocatetarget.meta
-../extension/syslibs/test/ecom3_relocatetarget.mk /epoc32/tools/makefile_templates/syslibs/test/ecom3_relocatetarget.mk
-../extension/syslibs/test/featmgr_moveplugin.meta /epoc32/tools/makefile_templates/syslibs/test/featmgr_moveplugin.meta
-../extension/syslibs/test/featmgr_moveplugin.mk /epoc32/tools/makefile_templates/syslibs/test/featmgr_moveplugin.mk
../extension/syslibs/test/sqlite3_securecopytestfiles.meta /epoc32/tools/makefile_templates/syslibs/test/sqlite3_securecopytestfiles.meta
../extension/syslibs/test/sqlite3_securecopytestfiles.mk /epoc32/tools/makefile_templates/syslibs/test/sqlite3_securecopytestfiles.mk
../extension/syslibs/word_template.meta /epoc32/tools/makefile_templates/syslibs/word_template.meta
--- a/deprecated/buildtools/buildsystem/group/tools_buildsystem.mrp Thu Oct 28 11:39:28 2010 +0800
+++ b/deprecated/buildtools/buildsystem/group/tools_buildsystem.mrp Fri Oct 29 10:03:48 2010 +0800
@@ -8,21 +8,8 @@
binary \epoc32\tools\makefile_templates\app-services\buildstubsis.mk
binary \epoc32\tools\makefile_templates\app-services\buildupgradesis.meta
binary \epoc32\tools\makefile_templates\app-services\buildupgradesis.mk
-binary \epoc32\tools\makefile_templates\app-services\tzlocaltestserver.meta
-binary \epoc32\tools\makefile_templates\app-services\tzlocaltestserver.mk
binary \epoc32\tools\makefile_templates\application-protocols\buildstubsis.meta
binary \epoc32\tools\makefile_templates\application-protocols\buildstubsis.mk
-binary \epoc32\tools\makefile_templates\base\bootstrap.meta
-binary \epoc32\tools\makefile_templates\base\bootstrap.mk
-binary \epoc32\tools\makefile_templates\base\bootstrap.xml
-binary \epoc32\tools\makefile_templates\base\bootstrap.flm
-binary \epoc32\tools\makefile_templates\base\config.meta
-binary \epoc32\tools\makefile_templates\base\config.mk
-binary \epoc32\tools\makefile_templates\base\copy_default.meta
-binary \epoc32\tools\makefile_templates\base\copy_default.mk
-binary \epoc32\tools\makefile_templates\base\genexec.meta
-binary \epoc32\tools\makefile_templates\base\genexec.mk
-binary \epoc32\tools\makefile_templates\base\base_rvct_common.mk
binary \epoc32\tools\makefile_templates\base\h2_genbootinc.meta
binary \epoc32\tools\makefile_templates\base\h2_genbootinc.mk
binary \epoc32\tools\makefile_templates\base\h2_restricted_coreldr.meta
@@ -35,28 +22,24 @@
binary \epoc32\tools\makefile_templates\base\h4_restricted_on_coreldr.mk
binary \epoc32\tools\makefile_templates\base\h4_restricted_on_miniboot.meta
binary \epoc32\tools\makefile_templates\base\h4_restricted_on_miniboot.mk
+binary \epoc32\tools\makefile_templates\base\ne1_tb_restricted_coreldr.meta
+binary \epoc32\tools\makefile_templates\base\ne1_tb_restricted_coreldr.mk
+binary \epoc32\tools\makefile_templates\base\ne1_tb_genbootinc.meta
+binary \epoc32\tools\makefile_templates\base\ne1_tb_genbootinc.mk
binary \epoc32\tools\makefile_templates\base\lab_restricted_miniboot.meta
binary \epoc32\tools\makefile_templates\base\lab_restricted_miniboot.mk
-binary \epoc32\tools\makefile_templates\base\lab_restricted_miniboot.xml
-binary \epoc32\tools\makefile_templates\base\lab_restricted_miniboot.flm
binary \epoc32\tools\makefile_templates\base\nand_fbr_offset.meta
binary \epoc32\tools\makefile_templates\base\nand_fbr_offset.mk
-binary \epoc32\tools\makefile_templates\base\ne1_tb_genbootinc.meta
-binary \epoc32\tools\makefile_templates\base\ne1_tb_genbootinc.mk
-binary \epoc32\tools\makefile_templates\base\ne1_tb_restricted_coreldr.meta
-binary \epoc32\tools\makefile_templates\base\ne1_tb_restricted_coreldr.mk
-binary \epoc32\tools\makefile_templates\base\ne1_tb_restricted_coreldr.xml
-binary \epoc32\tools\makefile_templates\base\ne1_tb_restricted_coreldr.flm
binary \epoc32\tools\makefile_templates\base\omap3_genbootinc.meta
binary \epoc32\tools\makefile_templates\base\omap3_genbootinc.mk
binary \epoc32\tools\makefile_templates\base\omap3_restricted_coreldr.meta
binary \epoc32\tools\makefile_templates\base\omap3_restricted_coreldr.mk
+binary \epoc32\tools\makefile_templates\base\omap3_restricted_coreldr.flm
binary \epoc32\tools\makefile_templates\base\omap3_restricted_coreldr.xml
-binary \epoc32\tools\makefile_templates\base\omap3_restricted_coreldr.flm
-binary \epoc32\tools\makefile_templates\converged-comms\createcommdbs.meta
-binary \epoc32\tools\makefile_templates\converged-comms\createcommdbs.mk
-binary \epoc32\tools\makefile_templates\converged-comms\installdefaultcommdb.meta
-binary \epoc32\tools\makefile_templates\converged-comms\installdefaultcommdb.mk
+binary \epoc32\tools\makefile_templates\base\lab_restricted_miniboot.flm
+binary \epoc32\tools\makefile_templates\base\lab_restricted_miniboot.xml
+binary \epoc32\tools\makefile_templates\base\ne1_tb_restricted_coreldr.flm
+binary \epoc32\tools\makefile_templates\base\ne1_tb_restricted_coreldr.xml
binary \epoc32\tools\makefile_templates\security\upsserver.meta
binary \epoc32\tools\makefile_templates\security\upsserver.mk
binary \epoc32\tools\makefile_templates\syslibs\conversiontable.meta
@@ -67,47 +50,27 @@
binary \epoc32\tools\makefile_templates\syslibs\generate_cpp.mk
binary \epoc32\tools\makefile_templates\syslibs\generate_snm.meta
binary \epoc32\tools\makefile_templates\syslibs\generate_snm.mk
-binary \epoc32\tools\makefile_templates\syslibs\test\bafl_copytestfiles.meta
-binary \epoc32\tools\makefile_templates\syslibs\test\bafl_copytestfiles.mk
-binary \epoc32\tools\makefile_templates\syslibs\test\bafl_resource_files.meta
-binary \epoc32\tools\makefile_templates\syslibs\test\bafl_resource_files.mk
-binary \epoc32\tools\makefile_templates\syslibs\test\centrep_copydatfile.meta
-binary \epoc32\tools\makefile_templates\syslibs\test\centrep_copydatfile.mk
-binary \epoc32\tools\makefile_templates\syslibs\test\centrep_copyincentrepsrv.meta
-binary \epoc32\tools\makefile_templates\syslibs\test\centrep_copyincentrepsrv.mk
-binary \epoc32\tools\makefile_templates\syslibs\test\centrep_copypctestfile.meta
-binary \epoc32\tools\makefile_templates\syslibs\test\centrep_copypctestfile.mk
-binary \epoc32\tools\makefile_templates\syslibs\test\centrep_copypctestfilev2.meta
-binary \epoc32\tools\makefile_templates\syslibs\test\centrep_copypctestfilev2.mk
+binary \epoc32\tools\makefile_templates\tools\features.meta
+binary \epoc32\tools\makefile_templates\tools\features.mk
+binary \epoc32\tools\makefile_templates\tools\compsupp.meta
+binary \epoc32\tools\makefile_templates\tools\compsupp.mk
+binary \epoc32\tools\makefile_templates\tools\x86tool.meta
+binary \epoc32\tools\makefile_templates\tools\x86tool.mk
+binary \epoc32\tools\shell\cmd.mk
+binary \epoc32\tools\shell\generic.mk
+binary \epoc32\tools\shell\sh.mk
+binary \epoc32\tools\makefile_templates\app-services\tzlocaltestserver.meta
+binary \epoc32\tools\makefile_templates\app-services\tzlocaltestserver.mk
binary \epoc32\tools\makefile_templates\syslibs\test\charconv_testpostbuild.meta
binary \epoc32\tools\makefile_templates\syslibs\test\charconv_testpostbuild.mk
binary \epoc32\tools\makefile_templates\syslibs\test\charconv_tiso8859x_generate_cpp.meta
binary \epoc32\tools\makefile_templates\syslibs\test\charconv_tiso8859x_generate_cpp.mk
binary \epoc32\tools\makefile_templates\syslibs\test\charconv_tsnmdata.meta
binary \epoc32\tools\makefile_templates\syslibs\test\charconv_tsnmdata.mk
-binary \epoc32\tools\makefile_templates\syslibs\test\ecom3_buildsis.meta
-binary \epoc32\tools\makefile_templates\syslibs\test\ecom3_buildsis.mk
-binary \epoc32\tools\makefile_templates\syslibs\test\ecom3_postbuild.meta
-binary \epoc32\tools\makefile_templates\syslibs\test\ecom3_postbuild.mk
-binary \epoc32\tools\makefile_templates\syslibs\test\ecom3_relocatetarget.meta
-binary \epoc32\tools\makefile_templates\syslibs\test\ecom3_relocatetarget.mk
-binary \epoc32\tools\makefile_templates\syslibs\test\featmgr_moveplugin.meta
-binary \epoc32\tools\makefile_templates\syslibs\test\featmgr_moveplugin.mk
-binary \epoc32\tools\makefile_templates\syslibs\test\logeng_copytestfiles.meta
-binary \epoc32\tools\makefile_templates\syslibs\test\logeng_copytestfiles.mk
binary \epoc32\tools\makefile_templates\syslibs\test\sqlite3_securecopytestfiles.meta
binary \epoc32\tools\makefile_templates\syslibs\test\sqlite3_securecopytestfiles.mk
binary \epoc32\tools\makefile_templates\syslibs\word_template.meta
binary \epoc32\tools\makefile_templates\syslibs\word_template.mk
-binary \epoc32\tools\makefile_templates\tools\compsupp.meta
-binary \epoc32\tools\makefile_templates\tools\compsupp.mk
-binary \epoc32\tools\makefile_templates\tools\features.meta
-binary \epoc32\tools\makefile_templates\tools\features.mk
-binary \epoc32\tools\makefile_templates\tools\x86tool.meta
-binary \epoc32\tools\makefile_templates\tools\x86tool.mk
-binary \epoc32\tools\shell\cmd.mk
-binary \epoc32\tools\shell\generic.mk
-binary \epoc32\tools\shell\sh.mk
notes_source \component_defs\release.src