home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 January
/
Chip_2001-01_cd1.bin
/
tema
/
mysql
/
mysql-3.23.28g-win-source.exe
/
make_all.bat
next >
Wrap
DOS Batch File
|
2000-10-18
|
4KB
|
117 lines
REM To fix makefiles one can do:
REM replace ' : $(SOURCE) "$(INTDIR)"' ' : $(SOURCE)' -- */*.mak
REM To clean everything, type: 'make_all clean'
REM Remove any existing object, or library files
@ECHO OFF
IF "%1"=="clean" goto CLEAN
GOTO MAKE
:CLEAN
REM clean all
@ECHO ON
for /R %%d in (*.lib) do del %%d
for /R %%d in (*.obj) do del %%d
@ECHO OFF
:MAKE
REM make all
@ECHO ON
cd strings
nmake -NOLOGO -f strings.mak CFG="strings - Win32 Debug"
nmake -NOLOGO -f strings.mak CFG="strings - Win32 Release"
cd ..
cd dbug
nmake -NOLOGO -f dbug.mak CFG="dbug - Win32 Debug"
nmake -NOLOGO -f dbug.mak CFG="dbug - Win32 Release"
cd ..
cd mysys
nmake -NOLOGO -f mysys.mak CFG="mysys - Win32 Debug"
nmake -NOLOGO -f mysys.mak CFG="mysys - Win32 Release"
cd ..
cd heap
nmake -NOLOGO -f heap.mak CFG="heap - Win32 Release"
nmake -NOLOGO -f heap.mak CFG="heap - Win32 Debug"
cd ..
cd regex
nmake -NOLOGO -f regex.mak CFG="regex - Win32 Debug"
nmake -NOLOGO -f regex.mak CFG="regex - Win32 Release"
cd ..
cd isam
nmake -NOLOGO -f isam.mak CFG="isam - Win32 Debug"
nmake -NOLOGO -f isam.mak CFG="isam - Win32 Release"
cd ..
cd merge
nmake -NOLOGO -f merge.mak CFG="merge - Win32 Debug"
nmake -NOLOGO -f merge.mak CFG="merge - Win32 Release"
cd ..
cd myisam
nmake -NOLOGO -f myisam.mak CFG="myisam - Win32 Debug"
nmake -NOLOGO -f myisam.mak CFG="myisam - Win32 Release"
cd ..
cd myisammrg
nmake -NOLOGO -f myisammrg.mak CFG="myisammrg - Win32 Debug"
nmake -NOLOGO -f myisammrg.mak CFG="myisammrg - Win32 Release"
cd ..
cd zlib
nmake -NOLOGO -f zlib.mak CFG="zlib - Win32 Debug"
nmake -NOLOGO -f zlib.mak CFG="zlib - Win32 Release"
cd ..
cd libmySQL
nmake -NOLOGO -f libmySQL.mak CFG="libmySQL - Win32 Debug" RECURSE=0
nmake -NOLOGO -f libmySQL.mak CFG="libmySQL - Win32 Release" RECURSE=0
cd ..
cd sql
nmake -NOLOGO -f mysqld.mak CFG="mysqld - Win32 Debug" RECURSE=0
nmake -NOLOGO -f mysqld.mak CFG="mysqld - Win32 Release" RECURSE=0
nmake -NOLOGO -f mysqld.mak CFG="mysqld - Win32 nt" RECURSE=0
cd ..
cd client
nmake -NOLOGO -f mysqlclient.mak CFG="mysqlclient - Win32 Debug" RECURSE=0
nmake -NOLOGO -f mysqlclient.mak CFG="mysqlclient - Win32 Release" RECURSE=0
nmake -NOLOGO -f mysql.mak CFG="mysql - Win32 Release" RECURSE=0
nmake -NOLOGO -f mysqladmin.mak CFG="mysqladmin - Win32 Release" RECURSE=0
nmake -NOLOGO -f mysqldump.mak CFG="mysqldump - Win32 Release" RECURSE=0
nmake -NOLOGO -f mysqlimport.mak CFG="mysqlimport - Win32 Release" RECURSE=0
nmake -NOLOGO -f mysqlshow.mak CFG="mysqlshow - Win32 Release" RECURSE=0
cd ..
cd isamchk
nmake -NOLOGO -f isamchk.mak CFG="isamchk - Win32 Release" RECURSE=0
cd ..
cd pack_isam
nmake -NOLOGO -f pack_isam.mak CFG="pack_isam - Win32 Release" RECURSE=0
cd ..
cd myisamchk
nmake -NOLOGO -f myisamchk.mak CFG="myisamchk - Win32 Release" RECURSE=0
cd ..
cd myisampack
nmake -NOLOGO -f myisampack.mak CFG="myisampack - Win32 Release" RECURSE=0
cd ..
cd myisamlog
nmake -NOLOGO -f myisamlog.mak CFG="myisamlog - Win32 Release" RECURSE=0
cd ..
cd mysqlbinlog
nmake -NOLOGO -f mysqlbinlog.mak CFG="mysqlbinlog - Win32 Release" RECURSE=0
cd ..
cd mysqlmanager
nmake -NOLOGO -f mysqlmanager.mak CFG="MySqlManager - Win32 Release" RECURSE=0
cd ..
cd mysqlshutdown
nmake -NOLOGO -f mysqlshutdown.mak CFG="mysqlshutdown - Win32 Release" RECURSE=0
cd ..
cd mysqlwatch
nmake -NOLOGO -f mysqlwatch.mak CFG="mysqlwatch - Win32 Release" RECURSE=0
cd ..
cd replace
nmake -NOLOGO -f replace.mak CFG="replace - Win32 Release" RECURSE=0
cd ..
cd perror
nmake -NOLOGO -f perror.mak CFG="perror - Win32 Release" RECURSE=0
cd ..
REM Copy things to c:\mysql\
c:\local\fixmysql23.bat