summaryrefslogtreecommitdiffstats
path: root/make.bat
diff options
context:
space:
mode:
Diffstat (limited to 'make.bat')
-rw-r--r--make.bat19
1 files changed, 19 insertions, 0 deletions
diff --git a/make.bat b/make.bat
new file mode 100644
index 0000000..cbb2273
--- /dev/null
+++ b/make.bat
@@ -0,0 +1,19 @@
+REM make script for Microsoft Visual C++
+
+REM use perl to create the config file
+perl wintools\make.pl
+
+type makeconfig Makefile.win.in >Makefile
+type makeconfig qtools\Makefile.in >qtools\Makefile
+type makeconfig src\Makefile.in >src\Makefile
+type makeconfig examples\Makefile.win.in >examples\Makefile
+type makeconfig doc\Makefile.win.in >doc\Makefile
+
+REM build in release mode (replace release with debug to add debug info)
+type qtools\qtools.pro.in | sed "s/\$extraopts/release/g" >qtools\qtools.pro
+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
+
+REM run make
+nmake