Blame MakeTools/builddsw.sh

Packit 857059
#!/bin/bash
Packit 857059
# BEGIN_ICS_COPYRIGHT8 ****************************************
Packit 857059
# 
Packit 857059
# Copyright (c) 2015, Intel Corporation
Packit 857059
# 
Packit 857059
# Redistribution and use in source and binary forms, with or without
Packit 857059
# modification, are permitted provided that the following conditions are met:
Packit 857059
# 
Packit 857059
#     * Redistributions of source code must retain the above copyright notice,
Packit 857059
#       this list of conditions and the following disclaimer.
Packit 857059
#     * Redistributions in binary form must reproduce the above copyright
Packit 857059
#       notice, this list of conditions and the following disclaimer in the
Packit 857059
#       documentation and/or other materials provided with the distribution.
Packit 857059
#     * Neither the name of Intel Corporation nor the names of its contributors
Packit 857059
#       may be used to endorse or promote products derived from this software
Packit 857059
#       without specific prior written permission.
Packit 857059
# 
Packit 857059
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Packit 857059
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit 857059
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Packit 857059
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
Packit 857059
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit 857059
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Packit 857059
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Packit 857059
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Packit 857059
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Packit 857059
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 857059
# 
Packit 857059
# END_ICS_COPYRIGHT8   ****************************************
Packit 857059
#
Packit 857059
# File:		builddsw
Packit 857059
#
Packit 857059
# Purpose:	Creates a Dev Studio Workspace (.dsw) file
Packit 857059
#		which references the given list of dsp files
Packit 857059
#
Packit 857059
Packit 857059
Usage() {
Packit 857059
   cmd="Usage: ${0} -f <dswFile> [file1.dsp file2.dsp ...]"
Packit 857059
   echo -e ${cmd}
Packit 857059
   return
Packit 857059
}
Packit 857059
Packit 857059
createDswHeader() {
Packit 857059
   echo -e "Microsoft Developer Studio Workspace File, Format Version 6.00" > ${dswFile}
Packit 857059
   echo -e "# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!\n" >> ${dswFile}
Packit 857059
   echo -e "###############################################################################" >> ${dswFile}
Packit 857059
}
Packit 857059
Packit 857059
createDswTrailer() {
Packit 857059
   echo -e "\nGlobal:\n" >> ${dswFile}
Packit 857059
   echo -e "Package=<5>" >> ${dswFile}
Packit 857059
   echo -e "{{{" >> ${dswFile}
Packit 857059
   echo -e "}}}\n" >> ${dswFile}
Packit 857059
   echo -e "Package=<3>" >> ${dswFile}
Packit 857059
   echo -e "{{{" >> ${dswFile}
Packit 857059
   echo -e "}}}\n" >> ${dswFile}
Packit 857059
   echo -e "###############################################################################" >> ${dswFile}
Packit 857059
}
Packit 857059
Packit 857059
Packit 857059
# Function to create a .dsp entry in the workspace file.
Packit 857059
createDswEntry() {
Packit 857059
   dspDir=`dirname  ${1}`
Packit 857059
   #the version of sed below occasionally dumps on DOS, so explicitly
Packit 857059
   # remove .dsp suffix using basename
Packit 857059
   #dspName=`basename ${1} | sed 's/\..*$//'`
Packit 857059
   dspName=`basename ${1} .dsp`
Packit 857059
Packit 857059
   echo -e "\nProject: \"${dspName}\"=${1} - Package Owner=<4>\n" >> ${dswFile}
Packit 857059
   echo -e "Package=<5>" >> ${dswFile}
Packit 857059
   echo -e "{{{" >> ${dswFile}
Packit 857059
   echo -e "    ${dspName}" >> ${dswFile}
Packit 857059
   echo -e "    ${dspDir}" >> ${dswFile}
Packit 857059
   echo -e "}}}\n" >> ${dswFile}
Packit 857059
   echo -e "Package=<4>" >> ${dswFile}
Packit 857059
   echo -e "{{{" >> ${dswFile}
Packit 857059
   echo -e "}}}\n" >> ${dswFile}
Packit 857059
   echo -e "###############################################################################" >> ${dswFile}
Packit 857059
}
Packit 857059
Packit 857059
# Script main starts here
Packit 857059
dswFile=""
Packit 857059
needHeader=0
Packit 857059
Packit 857059
while [ "${1}" != "" ] ; do
Packit 857059
   case "${1}" in
Packit 857059
      -f)   shift
Packit 857059
            dswFile=${1}
Packit 857059
            shift
Packit 857059
            ;;
Packit 857059
	
Packit 857059
      *)    if [ "${dswFile}" = "" ] ; then
Packit 857059
		     	Usage
Packit 857059
		     	exit 1
Packit 857059
	    	else
Packit 857059
		 		if [ ${needHeader} -eq 0 ] ; then
Packit 857059
		     		createDswHeader
Packit 857059
		     		needHeader=1
Packit 857059
		 		fi
Packit 857059
		 		createDswEntry ${1}
Packit 857059
           	fi
Packit 857059
            shift
Packit 857059
            ;;
Packit 857059
Packit 857059
   esac
Packit 857059
done
Packit 857059
Packit 857059
if [ "${dswFile}" = "" -o ${needHeader} -eq 0 ] ; then
Packit 857059
   Usage
Packit 857059
   exit 1
Packit 857059
fi
Packit 857059
Packit 857059
if [ ${needHeader} -eq 1 ] ; then
Packit 857059
   createDswTrailer
Packit 857059
fi
Packit 857059
Packit 857059
exit 0