forked from Mirrors/freeswitch
00654d880e
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8545 d0543943-73ff-0310-b7d9-9358b9ac24b2
44 lines
1.4 KiB
Batchfile
44 lines
1.4 KiB
Batchfile
@echo Windows build
|
|
@echo This batch file deletes the copied header files,
|
|
@echo Deleting Win32 header files...
|
|
@echo #####################################################
|
|
@echo IF YOU HAVE MADE CHANGES IN ..\xmlrpc_config.h, ..\include\xmlrpc-c\config.h etc ...
|
|
@echo THESE CHANGES WILL BE LOST!
|
|
@echo You should run diffcfg.bat first to check for changes,
|
|
@echo and updcfg.bat if you have made changes ...
|
|
@echo #####################################################
|
|
@echo ARE YOU SURE YOU WANT TO DO THIS? Ctrl+C to abort ...
|
|
@echo #####################################################
|
|
@pause
|
|
@set TEMP1=
|
|
@if NOT EXIST ..\include\xmlrpc-c\config.h goto DN1
|
|
del ..\include\xmlrpc-c\config.h > nul
|
|
@set TEMP1=%TEMP1% ..\include\xmlrpc-c\config.h
|
|
:DN1
|
|
@if NOT EXIST ..\xmlrpc_config.h goto DN2
|
|
del ..\xmlrpc_config.h > nul
|
|
@set TEMP1=%TEMP1% ..\xmlrpc_config.h
|
|
:DN2
|
|
@if NOT EXIST ..\transport_config.h goto DN3
|
|
del ..\transport_config.h > nul
|
|
@set TEMP1=%TEMP1% ..\transport_config.h
|
|
:DN3
|
|
@if NOT EXIST ..\version.h goto DN4
|
|
del ..\version.h > nul
|
|
@set TEMP1=%TEMP1% ..\version.h
|
|
:DN4
|
|
@if NOT EXIST ..\examples\config.h goto DN5
|
|
del ..\examples\config.h > nul
|
|
@set TEMP1=%TEMP1% ..\examples\config.h
|
|
:DN5
|
|
@if "%TEMP1%." == "." goto ALLDN
|
|
@echo DELETED win32 header files.
|
|
@echo %TEMP1%
|
|
@goto END
|
|
|
|
:ALLDN
|
|
@echo NOne to DELETE ...
|
|
@goto END
|
|
|
|
:END
|