#! /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="" # vcl flag: use_vcl="yes" 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\" \$(XLFLAGS) $all_obj" >> $tout echo "" >> $tout } is_stlport="no" function vc6_gen() { tout="temp" iout="temp_install" all_dep="main_dir" all_clean="" echo > $out echo > $tout rm -f $iout if test "$is_stlport" == yes; then prefix='vc6-stlport-' else prefix="$subdir-" fi if test "$no_single" != "yes"; then libname="$prefix""re300" opts="/c /nologo /ML /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /DWIN32 /DNDEBUG /D_MBCS /D_LIB /YX /FD" vc6_gen_lib fi libname="$prefix""re300m" opts="/nologo /MT /W3 /GX /O2 /GB /GF /Gy /I..\..\..\ /D_MT /DWIN32 /DNDEBUG /D_MBCS /D_LIB /YX /FD /c" vc6_gen_lib if test "$no_single" != "yes"; then debug="yes" libname="$prefix""re300d" opts="/nologo /MLd /W3 /Gm /GX /Zi /Od /I..\..\..\ /DWIN32 /D_DEBUG /D_MBCS /D_LIB /YX /FD /GZ /c " vc6_gen_lib fi libname="$prefix""re300dm" 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="$prefix""re300dl" 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="$prefix""re300l" 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="$prefix""re300ls" vc6_gen_lib if test "$is_stlport" == yes; then # debug STLPort mode: debug="yes" opts="/nologo /MDd /W3 /Gm /GX /Zi /Od /I../../../ /D__STL_DEBUG /D_STLP_DEBUG /D_DEBUG /DWIN32 /D_WINDOWS /D_MBCS /DUSRDLL /FD /GZ /c" libname="$prefix""re300ddl" vc6_gen_dll libname="$prefix""re300ddm" opts="/nologo /MTd /W3 /Gm /GX /Zi /Od /I..\..\..\ /D__STL_DEBUG /D_STLP_DEBUG /DWIN32 /D_MT /D_DEBUG /D_MBCS /D_LIB /YX /FD /GZ /c" vc6_gen_lib fi 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 } ############################################################### # # gcc generator section: # ############################################################### gcc_shared="no" function gcc_gen_lib() { if test "$gcc_shared" == "yes"; then obj_dir="$libname""_shared" all_dep="$all_dep $subdir $subdir/$obj_dir ./$subdir/lib$libname.so" else obj_dir="$libname" all_dep="$all_dep $subdir $subdir/$obj_dir ./$subdir/lib$libname.a" fi # # set up section comments: cat >> $tout << EOF ######################################################## # # section for lib$libname.a # ######################################################## EOF # # process source files: all_obj="" for file in $src do obj=`echo "$file" | sed 's/.*src\/\(.*\)cpp/\1o/g'` obj="$subdir/$obj_dir/$obj" all_obj="$all_obj $obj" echo "$obj: $file \$(ALL_HEADER)" >> $tout echo " \$(CXX) \$(INCLUDES) -o $obj $opts \$(CXXFLAGS) $file" >> $tout echo "" >> $tout done # # now for the directories for this library: echo "$subdir/$obj_dir : " >> $tout echo " mkdir -p $subdir/$obj_dir" >> $tout echo "" >> $tout # # now for the clean options for this library: all_clean="$all_clean $libname""_clean" echo "$libname"_clean : >> $tout echo " rm -f $subdir/$obj_dir/*.o" >> $tout echo "" >> $tout # # now for the main target for this library: if test "$gcc_shared" == "yes"; then echo ./$subdir/lib$libname.so : $all_obj >> $tout echo " \$(LINKER) -o $subdir/lib$libname.so \$(LDFLAGS) $all_obj \$(LIBS)" >> $tout else echo ./$subdir/lib$libname.a : $all_obj >> $tout echo " ar -r $subdir/lib$libname.a $all_obj" >> $tout fi echo "" >> $tout } function gcc_gen() { out="build/gcc.mak" tout="temp" iout="temp_install" subdir="gcc" all_dep="" all_clean="" echo > $out echo > $tout echo > $iout libname="boost_regex" opts="\$(C1)" gcc_gen_lib libname="boost_regex_debug" opts="\$(C2)" gcc_gen_lib cat > $out << EOF # # auto generated makefile for gcc compiler # # usage: # make # brings libraries up to date # make clean # deletes temporary object files (but not archives). # # # the following environment variables are recognised: # CXXFLAGS= extra compiler options - note applies to all build variants # INCLUDES= additional include directories # LDFLAGS= additional linker options # LIBS= additional library files # compiler: CXX=g++ LINKER=g++ -shared # # compiler options for release build: # C1=-c -O2 -I../../../ # # compiler options for debug build: # C2=-c -g -I../../../ EOF echo "" >> $out echo "ALL_HEADER=$header" >> $out echo "" >> $out echo "all : $subdir $all_dep" >> $out echo >> $out echo "$subdir :" >> $out echo " mkdir -p $subdir" >> $out echo >> $out echo "clean : $all_clean" >> $out echo >> $out echo "install : all" >> $out cat $iout >> $out echo >> $out cat $tout >> $out } function gcc_gen_shared() { out="build/gcc-shared.mak" tout="temp" iout="temp_install" subdir="gcc" all_dep="" all_clean="" echo > $out echo > $tout echo > $iout libname="boost_regex" opts="\$(C1)" gcc_gen_lib libname="boost_regex_debug" opts="\$(C2)" gcc_gen_lib cat > $out << EOF # # auto generated makefile for gcc compiler # # usage: # make # brings libraries up to date # make clean # deletes temporary object files (but not archives). # # # the following environment variables are recognised: # CXXFLAGS= extra compiler options - note applies to all build variants # INCLUDES= additional include directories # LDFLAGS= additional linker options # LIBS= additional library files # compiler: CXX=g++ LINKER=g++ -shared # # compiler options for release build: # C1=-c -O2 -I../../../ -fPIC # # compiler options for debug build: # C2=-c -g -I../../../ -fPIC EOF echo "" >> $out echo "ALL_HEADER=$header" >> $out echo "" >> $out echo "all : $subdir $all_dep" >> $out echo >> $out echo "$subdir :" >> $out echo " mkdir -p $subdir" >> $out echo >> $out echo "clean : $all_clean" >> $out echo >> $out echo "install : all" >> $out cat $iout >> $out echo >> $out cat $tout >> $out } ####################################################################### # # section for C++ Builder # ####################################################################### function bcb_gen_lib() { all_dep="$all_dep $subdir\\$libname $subdir\\$libname.lib" echo " copy $subdir\\$libname.lib \$(BCROOT)\\lib" >> $iout # # set up section comments: cat >> $tout << EOF ######################################################## # # section for $libname.lib # ######################################################## EOF # # process source files: all_obj="" all_lib_obj="" for file in $src do obj=`echo "$file" | sed 's/.*src\/\(.*\)cpp/\1obj/g'` obj="$subdir\\$libname\\$obj" all_obj="$all_obj $obj" all_lib_obj="$all_lib_obj +$obj" echo "$obj: $file \$(ALL_HEADER)" >> $tout echo " bcc32 @&&|" >> $tout echo "-c \$(INCLUDES) $opts \$(CXXFLAGS) -o$obj $file" >> $tout echo "|" >> $tout echo "" >> $tout done # # now for the directories for this library: echo "$subdir\\$libname : " >> $tout echo " -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\\"'*.il?' >> $tout echo " del $subdir\\$libname\\"'*.csm' >> $tout echo " del $subdir\\$libname\\"'*.tds' >> $tout echo "" >> $tout # # now for the main target for this library: echo $subdir\\$libname.lib : $all_obj >> $tout echo " tlib @&&|" >> $tout echo "/P32 /C /u /a \$(XSFLAGS) $subdir\\$libname.lib $all_lib_obj" >> $tout echo "|" >> $tout echo "" >> $tout } function bcb_gen_dll() { all_dep="$all_dep $subdir\\$libname $subdir\\$libname.lib" echo " copy $subdir\\$libname.lib \$(BCROOT)\\lib" >> $iout echo " copy $subdir\\$libname.dll \$(BCROOT)\\bin" >> $iout # # 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 " bcc32 @&&|" >> $tout echo "-c \$(INCLUDES) $opts \$(CXXFLAGS) -o$obj $file" >> $tout echo "|" >> $tout echo "" >> $tout done # # now for the directories for this library: echo "$subdir\\$libname :" >> $tout echo " -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\\"'*.il?' >> $tout echo " del $subdir\\$libname\\"'*.csm' >> $tout echo " del $subdir\\$libname\\"'*.tds' >> $tout echo " del $subdir\\"'*.tds' >> $tout echo "" >> $tout # # now for the main target for this library: echo $subdir\\$libname.lib : $all_obj >> $tout echo " bcc32 @&&|" >> $tout echo "$opts -e$subdir\\$libname.dll \$(XLFLAGS) $all_obj \$(LIBS)" >> $tout echo "|" >> $tout echo " implib -c $subdir\\$libname.lib $subdir\\$libname.dll" >> $tout echo "" >> $tout } function bcb_gen() { tout="temp" iout="temp_install" all_dep="$subdir" all_clean="" echo > $out echo > $tout rm -f $iout libname="$subdir""re300" opts="-tWM- -D_NO_VCL -O2 -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I\$(BCROOT)\include;../../../" bcb_gen_lib libname="$subdir""re300m" opts="-tWM -D_NO_VCL -O2 -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I\$(BCROOT)\include;../../../" bcb_gen_lib if test $use_vcl == "yes"; then libname="$subdir""re300v" opts="-tWM -tWV -DJM_USE_VCL -O2 -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I\$(BCROOT)\include;../../../" bcb_gen_lib libname="$subdir""re300lv" opts="-tWD -tWM -tWR -tWV -DJM_USE_VCL -D_RTLDLL -O2 -w-inl -w-aus -w-rch -w-8012 -w-8037 -w-8057 -DSTRICT; -I\$(BCROOT)\include;../../../ -L\$(BCROOT)\lib;\$(BCROOT)\lib\release;" bcb_gen_dll fi libname="$subdir""re300lm" opts="-tWD -tWM -tWR -D_NO_VCL -D_RTLDLL -O2 -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I\$(BCROOT)\include;../../../ -L\$(BCROOT)\lib;\$(BCROOT)\lib\release;" bcb_gen_dll libname="$subdir""re300l" opts="-tWD -tWR -tWM- -D_NO_VCL -D_RTLDLL -O2 -w-inl -w-aus -w-rch -w-8012 -w-8057 -w-8037 -DSTRICT; -I\$(BCROOT)\include;../../../ -L\$(BCROOT)\lib;\$(BCROOT)\lib\release;" bcb_gen_dll cat > $out << EOF # # auto generated makefile for C++ Builder # # usage: # make # brings libraries up to date # make install # brings libraries up to date and copies binaries to your C++ Builder /lib and /bin directories (recomended) # make clean # removes all temporary files. # # Add additional compiler options here: # CXXFLAGS= # # Add additional include directories here: # INCLUDES= # # add additional linker flags here: # XLFLAGS= # # add additional libraries to link to here: # LIBS= # # add additional static-library creation flags here: # XSFLAGS= !ifndef BCROOT BCROOT=\$(MAKEDIR)\\.. !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 $subdir : >> $out echo " -mkdir $subdir" >> $out echo "" >> $out cat $tout >> $out } ####################################################################### # # section for generic compiler # ####################################################################### function gen_gen_lib() { all_dep="$all_dep $subdir $subdir/$libname ./$subdir/lib$libname.so" # # set up section comments: cat >> $tout << EOF ######################################################## # # section for lib$libname.so # ######################################################## EOF # # process source files: all_obj="" for file in $src do obj=`echo "$file" | sed 's/.*src\/\(.*\)cpp/\1o/g'` obj="$subdir/$libname/$obj" all_obj="$all_obj $obj" echo "$obj: $file \$(ALL_HEADER)" >> $tout echo " \$(CXX) \$(INCLUDES) -o $obj $opts \$(CXXFLAGS) $file" >> $tout echo "" >> $tout done # # now for the directories for this library: echo "$subdir/$libname : " >> $tout echo " mkdir -p $subdir/$libname" >> $tout echo "" >> $tout # # now for the clean options for this library: all_clean="$all_clean $libname""_clean" echo "$libname"_clean : >> $tout echo " rm -f $subdir/$libname/*.o" >> $tout echo "" >> $tout # # now for the main target for this library: echo ./$subdir/lib$libname.so : $all_obj >> $tout echo " \$(LINKER) \$(LDFLAGS) -o $subdir/lib$libname.so $all_obj \$(LIBS)" >> $tout echo "" >> $tout } function gen_gen() { out="build/generic.mak" tout="temp" iout="temp_install" subdir="\$(DIRNAME)" all_dep="" all_clean="" echo > $out echo > $tout echo > $iout libname="boost_regex" opts="\$(C1)" gen_gen_lib cat > $out << EOF # # auto generated makefile for generic compiler # # usage: # make # brings libraries up to date # make clean # deletes temporary object files (but not archives). # # # the following environment variables are recognised: # CXXFLAGS= extra compiler options - note applies to all build variants # INCLUDES= additional include directories # LDFLAGS= additional linker options # LIBS= additional library files # CXX= compiler to use # LINKER= linker/archiver to use # name of subdirectory to use for object/archive files: DIRNAME=generic # # default compiler options for release build: # C1=-c -O2 -I../../../ EOF echo "" >> $out echo "ALL_HEADER=$header" >> $out echo "" >> $out echo "all : $subdir $all_dep" >> $out echo >> $out echo "$subdir :" >> $out echo " mkdir -p $subdir" >> $out echo >> $out echo "clean : $all_clean" >> $out echo >> $out echo "install : all" >> $out cat $iout >> $out echo >> $out cat $tout >> $out } ####################################################################### # # section for Sun Forte 6.1 (5.1 compiler) # ####################################################################### function sun_gen_lib() { all_dep="$all_dep $subdir/$libname $subdir/$libname.a" # # set up section comments: cat >> $tout << EOF ######################################################## # # section for $libname.a # ######################################################## EOF # # process source files: all_obj="" all_lib_obj="" for file in $src do obj=`echo "$file" | sed 's/.*src\/\(.*\)cpp/\1o/g'` obj="$subdir/$libname/$obj" all_obj="$all_obj $obj" all_lib_obj="$all_lib_obj $obj" echo "$obj: $file \$(ALL_HEADER)" >> $tout echo " CC -c \$(INCLUDES) $opts \$(CXXFLAGS) -o $obj $file" >> $tout echo "" >> $tout done # # now for the directories for this library: echo "$subdir/$libname : " >> $tout echo " mkdir -p $subdir/$libname" >> $tout echo "" >> $tout # # now for the clean options for this library: all_clean="$all_clean $libname""_clean" echo "$libname"_clean : >> $tout echo " rm -f $subdir/$libname/"'*.o' >> $tout echo " rm -fr $subdir/$libname/\$(SUNWS_CACHE_NAME)" >> $tout echo "" >> $tout # # now for the main target for this library: echo $subdir/$libname.a : $all_obj >> $tout echo " CC -xar \$(CXXFLAGS) \$(LDFLAGS) -o $subdir/$libname.a $all_lib_obj" >> $tout echo "" >> $tout } function sun_gen_dll() { all_dep="$all_dep $subdir/shared_$libname $subdir/$libname.so" # # set up section comments: cat >> $tout << EOF ######################################################## # # section for $libname.so # ######################################################## EOF # # process source files: all_obj="" for file in $src do obj=`echo "$file" | sed 's/.*src\/\(.*\)cpp/\1o/g'` obj="$subdir/shared_$libname/$obj" all_obj="$all_obj $obj" echo "$obj: $file \$(ALL_HEADER)" >> $tout echo " CC -c \$(INCLUDES) $opts \$(CXXFLAGS) -o $obj $file" >> $tout echo "" >> $tout done # # now for the directories for this library: echo "$subdir/shared_$libname :" >> $tout echo " mkdir -p $subdir/shared_$libname" >> $tout echo "" >> $tout # # now for the clean options for this library: all_clean="$all_clean $libname""_clean_shared" echo "$libname"_clean_shared : >> $tout echo " rm -f $subdir/shared_$libname/"'*.o' >> $tout echo " rm -fr $subdir/shared_$libname/\$(SUNWS_CACHE_NAME)" >> $tout echo "" >> $tout # # now for the main target for this library: echo $subdir/$libname.so : $all_obj >> $tout echo " CC $opts -G -o $subdir/$libname.so \$(LDFLAGS) $all_obj \$(LIBS)" >> $tout echo "" >> $tout } function sun_gen() { tout="temp" iout="temp_install" all_dep="$subdir" all_clean="" echo > $out echo > $tout rm -f $iout libname="libboost_regex\$(LIBSUFFIX)" opts="-O2 -I../../../" sun_gen_lib libname="libboost_regex_mt\$(LIBSUFFIX)" opts="-O2 -mt -I../../../" sun_gen_lib libname="libboost_regex\$(LIBSUFFIX)" opts="-KPIC -O2 -I../../../" sun_gen_dll libname="libboost_regex_mt\$(LIBSUFFIX)" opts="-KPIC -O2 -mt -I../../../" sun_gen_dll cat > $out << EOF # # auto generated makefile for Sun Forte 6.1 # # usage: # make # brings libraries up to date # make clean # removes all temporary files. # # Add additional compiler options here: # CXXFLAGS= # # Add additional include directories here: # INCLUDES= # # add additional linker flags here: # LDFLAGS= # # add additional libraries to link to here: # LIBS= # # lib suffix string: # LIBSUFFIX= # # template cache path: # SUNWS_CACHE_NAME=SunWS_cache 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 $subdir : >> $out echo " mkdir -p $subdir" >> $out echo "" >> $out cat $tout >> $out } # # locate all the header dependencies: for file in ../../boost/regex/*.hpp do if test $file != '../../boost/regex/*.hpp'; then header="$header ../$file" fi done for file in ../../boost/regex/detail/*.hpp do if test $file != '../../boost/regex/detail/*.hpp'; then header="$header ../$file" fi done for file in ../../boost/regex/detail/*.hxx do if test $file != '../../boost/regex/detail/*.hxx'; then header="$header $file" fi done # # locate all the source files: for file in src/*.cpp do if test $file != 'src/*.cpp'; then src="$src ../$file" fi done # # generate vc6 makefile: out="build/vc6.mak" subdir="vc6" vc6_gen # # generate vc6-stlport makefile: is_stlport="yes" out="build/vc6-stlport.mak" no_single="yes" subdir="vc6-stlport" vc6_gen # # generate vc7 makefile: is_stlport="no" out="build/vc7.mak" no_single="no" subdir="vc7" vc6_gen # # generate gcc makefile: gcc_gen gcc_shared="yes" gcc_gen_shared # # generate C++ Builder 4 files: out="build/bcb4.mak" subdir="bcb4" bcb_gen # # generate C++ Builder 5 files: out="build/bcb5.mak" subdir="bcb5" bcb_gen # # generate C++ Builder 5 command line tools files: use_vcl="no" out="build/bc55.mak" subdir="bcb5" bcb_gen # # generate generic makefile: gen_gen # # generate Sun 6.1 makefile: out="build/sunpro.mak" subdir="sunpro" sun_gen # # remove tmep files; rm -f $tout $iout