Skip to content
Snippets Groups Projects
Commit 594f6bbc authored by Fons Rademakers's avatar Fons Rademakers
Browse files

not needed anymore due to changes in the build system.

git-svn-id: http://root.cern.ch/svn/root/trunk@15493 27541ba8-7e3a-0410-8455-c3a389f83636
parent e1f90896
No related branches found
No related tags found
No related merge requests found
#! /bin/sh
# Simple interface to CL, tansforming -o <obj> to -Fo<obj>
args=
while [ "$1" != "" ]; do
case "$1" in
-o) args="$args -Fo"; shift; args="$args$1" ;;
*) args="$args $1" ;;
esac
shift
done
cl $args
exit $?
#! /bin/sh
# Simple interface to CL, tansforming -o <obj> to -Fo<obj>
args=
while [ "$1" != "" ]; do
case "$1" in
-o) args="$args -Fo"; shift; args="$args$1" ;;
*) args="$args $1" ;;
esac
shift
done
cl $args
exit $?
#! /bin/sh
# Script to generate the file cint/MAKEINFO (Visual C++ version).
# Called by main Makefile.
#
# Author: Fons Rademakers, 29/2/2000
MAKEINFO=$1
CXX=$2
CC=$3
CPPPREP=$4
rm -f __makeinfo
echo "Running $0"
echo "# This is file had been automatically generated" > __makeinfo
echo "# And will be re-generated when running make" >> __makeinfo
echo "# Unless the keyword DEFAULT is replaced by LOCAL" >> __makeinfo
echo "# on the next line, before MAKEINFO" >> __makeinfo
echo "# DEFAULT MAKEINFO" >> __makeinfo
echo "" >> __makeinfo
echo "CC = cl -nologo " >> __makeinfo
echo "CPP = cl -nologo " >> __makeinfo
echo "CPREP = cl -nologo -E -Dexternalref=extern -D__CINT__" >> __makeinfo
if [ "$CPPPREP" = "" ]; then
echo "CPPPREP = cl -nologo -E -C -D__CINT__" >> __makeinfo
else
echo "CPPPREP = $CPPPREP" >> __makeinfo
fi;
echo "" >> __makeinfo
echo "# source code postfix" >> __makeinfo
echo "CSRCPOST = .c" >> __makeinfo
echo "CHDRPOST = .h" >> __makeinfo
echo "CPPSRCPOST = .cxx" >> __makeinfo
echo "CPPHDRPOST = .h" >> __makeinfo
echo "OBJPOST = .o" >> __makeinfo
echo "DLLPOST = .dll" >> __makeinfo
(
if [ -r $MAKEINFO ]; then
diff __makeinfo $MAKEINFO > /dev/null; status=$? ;
if [ "$status" -ne "0" ]; then
grep " LOCAL MAKEINFO" $MAKEINFO; status=$?;
if [ "$status" -ne "0" ]; then
echo "Changing $MAKEINFO"
mv __makeinfo $MAKEINFO;
else
rm -f __makeinfo; fi;
else
rm -f __makeinfo; fi;
else
echo "Making $MAKEINFO"
mv __makeinfo $MAKEINFO; fi
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment