#! /bin/bash libname="" src="" header="" all_dep="" # current makefile: out="" # temporary file: tout="" # install target temp file: iout="" # debug flag: debug="no" # compile options: opts="" # main output sub-directory: subdir="" function vc6_gen_lib() { all_dep="$all_dep $libname""_dir ./$subdir/$libname.lib" echo " copy $subdir\\$libname.lib "'"$'"(MSVCDIR)\\lib"'"' >> $iout if test $debug == "yes"; then echo " copy $subdir\\$libname.pdb "'"$'"(MSVCDIR)\\lib"'"' >> $iout fi # # set up section comments: cat >> $tout << EOF ######################################################## # # section for $libname.lib # ######################################################## EOF # # process source files: all_obj="" for file in $src do obj=`echo "$file" | sed 's/.*src\/\(.*\)cpp/\1obj/g'` obj="$subdir/$libname/$obj" all_obj="$all_obj $obj" echo "$obj: $file \$(ALL_HEADER)" >> $tout echo " cl \$(INCLUDES) $opts \$(CXXFLAGS) -Fp$subdir/$libname/$libname.pch -Fo./$subdir/$libname/ -Fd$subdir/$libname.pdb $file" >> $tout echo "" >> $tout done # # now for the directories for this library: echo "$libname"_dir : >> $tout echo " @if not exist \"$subdir\\$libname\\\$(NULL)\" mkdir $subdir\\$libname" >> $tout echo "" >> $tout # # now for the clean options for this library: all_clean="$all_clean $libname""_clean" echo "$libname"_clean : >> $tout echo " del $subdir\\$libname\\"'*.obj' >> $tout echo " del $subdir\\$libname\\"'*.idb' >> $tout echo " del $subdir\\$libname\\"'*.exp' >> $tout echo " del $subdir\\$libname\\"'*.pch' >> $tout echo "" >> $tout # # now for the main target for this library: echo ./$subdir/$libname.lib : $all_obj >> $tout echo " link -lib /nologo /out:$subdir/$libname.lib \$(XSFLAGS) $all_obj" >> $tout echo "" >> $tout } function vc6_gen_dll() { all_dep="$all_dep $libname""_dir ./$subdir/$libname.lib" echo " copy $subdir\\$libname.lib "'"$'"(MSVCDIR)\\lib"'"' >> $iout echo " copy $subdir\\$libname.dll "'"$'"(MSVCDIR)\\bin"'"' >> $iout if test $debug == "yes"; then echo " copy $subdir\\$libname.pdb "'"$'"(MSVCDIR)\\lib"'"' >> $iout fi # # set up section comments: cat >> $tout << EOF ######################################################## # # section for $libname.lib # ######################################################## EOF # # process source files: all_obj="" for file in $src do obj=`echo "$file" | sed 's/.*src\/\(.*\)cpp/\1obj/g'` obj="$subdir/$libname/$obj" all_obj="$all_obj $obj" echo "$obj: $file \$(ALL_HEADER)" >> $tout echo " cl \$(INCLUDES) $opts \$(CXXFLAGS) -Fp$subdir/$libname/$libname.pch -Fo./$subdir/$libname/ -Fd$subdir/$libname.pdb $file" >> $tout echo "" >> $tout done # # now for the directories for this library: echo "$libname"_dir : >> $tout echo " @if not exist \"$subdir\\$libname\\\$(NULL)\" mkdir $subdir\\$libname" >> $tout echo "" >> $tout # # now for the clean options for this library: all_clean="$all_clean $libname""_clean" echo "$libname"_clean : >> $tout echo " del $subdir\\$libname\\"'*.obj' >> $tout echo " del $subdir\\$libname\\"'*.idb' >> $tout echo " del $subdir\\$libname\\"'*.exp' >> $tout echo " del $subdir\\$libname\\"'*.pch' >> $tout echo "" >> $tout # # now for the main target for this library: echo ./$subdir/$libname.lib : $all_obj >> $tout echo " link kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /incremental:yes /pdb:\"$subdir/$libname.pdb\" /debug /machine:I386 /out:\"$subdir/$libname.dll\" /implib:\"$subdir/$libname.lib\" /LIBPATH:\$(STLPORT_PATH)\\lib \$(XLFLAGS) $all_obj" >> $tout echo "" >> $tout } is_stlport="no" function vc6_gen() { debug="no" tout="temp" iout="temp_install" all_dep="main_dir" all_clean="" echo > $out echo > $tout rm -f $iout prefix="$subdir-" libname="boost_regex_${subdir}_sss" opts='/c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /YX /FD' vc6_gen_lib libname="boost_regex_${subdir}_mss" opts='/nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /YX /FD /c' vc6_gen_lib debug="yes" libname="boost_regex_${subdir}_sssd" opts='/nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /YX /FD /GZ /c ' vc6_gen_lib libname="boost_regex_${subdir}_mssd" opts='/nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /YX /FD /GZ /c' vc6_gen_lib libname="boost_regex_${subdir}_mdid" opts='/nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /YX /FD /GZ /c' vc6_gen_dll debug="no" opts='/nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /YX /FD /c' libname="boost_regex_${subdir}_mdi" vc6_gen_dll debug="no" opts='/nologo /MD /W3 /GX /O2 /GB /GF /Gy /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /YX /FD /c' libname="boost_regex_${subdir}_mds" vc6_gen_lib debug="yes" libname="boost_regex_${subdir}_mdsd" opts='/nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /YX /FD /GZ /c' vc6_gen_lib cat > $out << EOF # # auto generated makefile for VC6 compiler # # usage: # make # brings libraries up to date # make install # brings libraries up to date and copies binaries to your VC6 /lib and /bin directories (recomended) # # # Add additional compiler options here: # CXXFLAGS= # # Add additional include directories here: # INCLUDES= # # add additional linker flags here: # XLFLAGS= # # add additional static-library creation flags here: # XSFLAGS= !IF "\$(OS)" == "Windows_NT" NULL= !ELSE NULL=nul !ENDIF !IF "\$(MSVCDIR)" == "" !ERROR Variable MSVCDIR not set. !ENDIF EOF echo "" >> $out echo "ALL_HEADER=$header" >> $out echo "" >> $out echo "all : $all_dep" >> $out echo >> $out echo "clean : $all_clean" >> $out echo >> $out echo "install : all" >> $out cat $iout >> $out echo >> $out echo main_dir : >> $out echo " @if not exist \"$subdir\\\$(NULL)\" mkdir $subdir" >> $out echo "" >> $out cat $tout >> $out } function vc6_stlp_gen() { debug="no" tout="temp" iout="temp_install" all_dep="main_dir" all_clean="" echo > $out echo > $tout rm -f $iout prefix="$subdir-" libname="boost_regex_${subdir}_mss" opts='/nologo /MT /W3 /GX /O2 /GB /GF /Gy /I$(STLPORT_PATH)\stlport /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /YX /FD /c' vc6_gen_lib debug="true" libname="boost_regex_${subdir}_mssd" opts='/nologo /MTd /W3 /Gm /GX /Zi /Od /I$(STLPORT_PATH)\stlport /I..\..\..\ /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /YX /FD /GZ /c' vc6_gen_lib libname="boost_regex_${subdir}_mdid" opts='/nologo /MDd /W3 /Gm /GX /Zi /Od /I$(STLPORT_PATH)\stlport /I../../../ /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /YX /FD /GZ /c' vc6_gen_dll debug="no" opts='/nologo /MD /W3 /GX /O2 /GB /GF /I$(STLPORT_PATH)\stlport /Gy /I../../../ /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /YX /FD /c' libname="boost_regex_${subdir}_mdi" vc6_gen_dll debug="no" opts='/nologo /MD /W3 /GX /O2 /GB /GF /Gy /I$(STLPORT_PATH)\stlport /I../../../ /DBOOST_REGEX_STATIC_LINK /DNDEBUG /DWIN32 /D_WINDOWS /D_MBCS /D_USRDLL /YX /FD /c' libname="boost_regex_${subdir}_mds" vc6_gen_lib debug="true" libname="boost_regex_${subdir}_mdsd" opts='/nologo /MDd /W3 /Gm /GX /Zi /Od /I$(STLPORT_PATH)\stlport /I../../../ /DBOOST_REGEX_STATIC_LINK /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /YX /FD /GZ /c' vc6_gen_lib # debug STLPort mode: debug="yes" opts='/nologo /MDd /W3 /Gm /GX /Zi /Od /I$(STLPORT_PATH)\stlport /I../../../ /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GZ /c' libname="boost_regex_${subdir}_mdidd" vc6_gen_dll libname="boost_regex_${subdir}_mssdd" opts='/nologo /MTd /W3 /Gm /GX /Zi /Od /I$(STLPORT_PATH)\stlport /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /YX /FD /GZ /c' vc6_gen_lib opts='/nologo /MDd /W3 /Gm /GX /Zi /Od /I$(STLPORT_PATH)\stlport /I../../../ /DBOOST_REGEX_STATIC_LINK /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GZ /c' libname="boost_regex_${subdir}_mdsdd" vc6_gen_lib cat > $out << EOF # # auto generated makefile for VC6+STLPort # # usage: # make # brings libraries up to date # make install # brings libraries up to date and copies binaries to your VC6 /lib and /bin directories (recomended) # # # Add additional compiler options here: # CXXFLAGS= # # Add additional include directories here: # INCLUDES= # # add additional linker flags here: # XLFLAGS= # # add additional static-library creation flags here: # XSFLAGS= !IF "\$(OS)" == "Windows_NT" NULL= !ELSE NULL=nul !ENDIF !IF "\$(MSVCDIR)" == "" !ERROR Variable MSVCDIR not set. !ENDIF !IF "\$(STLPORT_PATH)" == "" !ERROR Variable STLPORT_PATH not set. !ENDIF EOF echo "" >> $out echo "ALL_HEADER=$header" >> $out echo "" >> $out echo "all : $all_dep" >> $out echo >> $out echo "clean : $all_clean" >> $out echo >> $out echo "install : stlport_check all" >> $out cat $iout >> $out echo >> $out echo main_dir : >> $out echo " @if not exist \"$subdir\\\$(NULL)\" mkdir $subdir" >> $out echo "" >> $out echo 'stlport_check : $(STLPORT_PATH)\stlport\string' >> $out echo " echo" >> $out echo "" >> $out cat $tout >> $out } . common.sh # # generate vc6 makefile: out="vc6.mak" subdir="vc6" vc6_gen # # generate vc6-stlport makefile: is_stlport="yes" out="vc6-stlport.mak" no_single="yes" subdir="vc6-stlport" vc6_stlp_gen # # generate vc7 makefile: is_stlport="no" out="vc7.mak" no_single="no" subdir="vc7" vc6_gen # # remove tmep files; rm -f $tout $iout