1) Add the sbsv1 components from sftools/dev/build to make the linux_build package independent of the obsolete buildtools package.
2) Enhance romnibus.pl so that it generate the symbol file for the built rom when invoked by Raptor
3) Make the maksym.pl tool portable for Linux as well as Windows.
4) Remove the of armasm2as.pl from the e32tools component in favour of the copy now exported from sbsv1/e32util.
#
# 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 the License "Symbian Foundation License v1.0"
# which accompanies this distribution, and is available
# at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
#
# Initial Contributors:
# Nokia Corporation - initial contribution.
#
# Contributors:
#
# Description:
# cmaker makefile installation.
#
# Set perl executable if it is not set by the environment.
PERL ?= perl
INSTALLDIR = $(subst \,/,$(EPOCROOT))epoc32/tools
INSTALLDIRSRC = $(INSTALLDIR)/cmaker
INSTALLDIRBIN = $(INSTALLDIR)/rom
SRCFILES = $(wildcard src/*.mk)
TRGFILES = $(patsubst src/%.mk,$(INSTALLDIRSRC)/%.mk,$(SRCFILES))
.PHONY: install clean
install: $(TRGFILES) $(INSTALLDIRBIN)/mingw_make.exe $(INSTALLDIR)/cmaker.cmd ; @
src/cmaker.cmd: $(INSTALLDIR)
$(INSTALLDIR)/cmaker.cmd : src/cmaker.cmd
$(call copy,$<,$@)
src/*.mk: $(INSTALLDIRSRC)
$(INSTALLDIRSRC)/%.mk: src/%.mk
$(call copy,$<,$@)
bin/mingw_make.exe :$(INSTALLDIRBIN)
$(INSTALLDIRBIN)/mingw_make.exe: bin/mingw_make.exe
$(call copy,$<,$@)
$(INSTALLDIR):
$(call makedir,$@)
$(INSTALLDIRSRC):
$(call makedir,$@)
$(INSTALLDIRBIN):
$(call makedir,$@)
clean:
$(call remove,$(INSTALLDIRSRC))
$(call remove,$(INSTALLDIR)/cmaker.cmd)
############################################################################################
# Create some perl specific operations to make the install operation platform independent
define makedir
$(PERL) -e 'use File::Path; mkpath(q($1))'
endef
define copy
$(PERL) -e 'use File::Copy; copy(q($1),q($2))'
endef
define remove
$(PERL) -e 'use File::Remove qw(remove); remove \1,q($1)'
endef