summaryrefslogtreecommitdiffstats
path: root/make.bat
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-10-15 15:32:16 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-10-15 15:32:16 (GMT)
commit868208ab61ca3aa6f506076f60de2745eaa8a6be (patch)
tree7824ba2a5c9f1fe6ddc8633a13cc7d1e7a6c79a3 /make.bat
parent499475795ed160e3a1e9cb571adc1ad86dc6a8ba (diff)
downloadDoxygen-868208ab61ca3aa6f506076f60de2745eaa8a6be.zip
Doxygen-868208ab61ca3aa6f506076f60de2745eaa8a6be.tar.gz
Doxygen-868208ab61ca3aa6f506076f60de2745eaa8a6be.tar.bz2
Release-1.2.2-20001015
Diffstat (limited to 'make.bat')
-rw-r--r--make.bat32
1 files changed, 0 insertions, 32 deletions
diff --git a/make.bat b/make.bat
deleted file mode 100644
index 67d3a26..0000000
--- a/make.bat
+++ /dev/null
@@ -1,32 +0,0 @@
-REM make script for Microsoft Visual C++
-
-REM goto OK
-
-if not '%QTDIR%'=='' goto OK
-echo The QTDIR environment variable is not set! See the INSTALL file for more info.
-rem You can also remove the comment from the upper "REM goto OK" line
-rem and set the QTDIR correctly on the line below.
-goto END
-:OK
-
-REM Change the QTDIR setting as appropriate (at the following line)
-if '%QTDIR%'=='' set QTDIR=c:\usr\qt-1.44
-
-REM Generate the batch for compilation from the src subdirectory (make.bat)
-echo set QTDIR=%QTDIR%>src\make.bat
-echo nmake>>src\make.bat
-
-REM use perl to create the config file
-perl wintools\make.pl
-
-type makeconfig Makefile.win.in >Makefile
-type makeconfig src\Makefile.in >src\Makefile
-type makeconfig examples\Makefile.win.in >examples\Makefile
-type makeconfig doc\Makefile.win.in >doc\Makefile
-type src\doxygen.pro.in | sed "s/\$extraopts/release/g" >src\doxygen.pro
-type src\doxytag.pro.in | sed "s/\$extraopts/release/g" >src\doxytag.pro
-type src\doxysearch.pro.in | sed "s/\$extraopts/release/g" >src\doxysearch.pro
-
-nmake
-
-:END