summaryrefslogtreecommitdiffstats
path: root/make.bat
blob: c20bba6fc267ee8d96c38097c1711f3d44820f6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
@echo off
REM make script for Microsoft Visual C++

REM ...and MINGW and Borland 5.5 also!


if "%1"=="bcc"   SET CC=borland

if "%1"=="mingw" SET CC=mingw
if "%1"=="msvc"  SET CC=msvc

if "%1"=="" goto USAGE

if "%CC%"=="msvc"     SET MAKE=nmake

if not "%CC%"=="msvc" SET MAKE=make

SET MODE=release
if "%2"=="debug" SET MODE=debug



REM use perl to create the config file

perl wintools\version.pl >VERSION

perl wintools\make.pl %CC%



type makeconfig                   > Makefile

type Makefile.win_%MAKE%.in       >>Makefile

type makeconfig                   > qtools\Makefile

type qtools\Makefile.in           >>qtools\Makefile

type makeconfig                   > libpng\Makefile

type libpng\Makefile.in           >>libpng\Makefile

type makeconfig                   > libmd5\Makefile

type libmd5\Makefile.in           >>libmd5\Makefile

type makeconfig                   > src\Makefile

type src\Makefile.in              >>src\Makefile

type makeconfig                   > examples\Makefile

type examples\Makefile.win.in     >>examples\Makefile

type makeconfig                   > doc\Makefile

type doc\Makefile.win_%MAKE%.in   >>doc\Makefile

type makeconfig                   > addon\doxywizard\Makefile

type addon\doxywizard\Makefile.win_%MAKE%.in >>addon\doxywizard\Makefile

type makeconfig                        > addon\doxmlparser\src\Makefile

type addon\doxmlparser\src\Makefile.in >>addon\doxmlparser\src\Makefile



REM build in release or debug mode 

REM sed is used to replace $extraopts by either debug or release while copying

sed "s/\$extraopts/%MODE%/g" qtools\qtools.pro.in >qtools\qtools.pro
sed "s/\$extraopts/%MODE%/g" libpng\libpng.pro.in >libpng\libpng.pro

sed "s/\$extraopts/%MODE%/g" libmd5\libmd5.pro.in >libmd5\libmd5.pro
sed "s/\$extraopts/%MODE%/g" src\libdoxygen.pro.in >src\libdoxygen.pro

sed "s/\$extraopts/%MODE%/g" src\libdoxycfg.pro.in >src\libdoxycfg.pro
sed "s/\$extraopts/%MODE%/g" src\doxygen.pro.in >src\doxygen.pro

sed "s/\$extraopts/%MODE%/g" src\doxytag.pro.in >src\doxytag.pro
sed "s/\$extraopts/%MODE%/g" addon\doxywizard\doxywizard.pro.in >addon\doxywizard\doxywizard.pro



REM run make

%MAKE%.exe

goto END



:USAGE

echo "Call with '%0 [bcc|mingw|msvc] [debug]'!"

echo "  bcc:   compile with Borland C++"

echo "  mingw: compile with GCC for windows (see www.mingw.org)"

echo "  msvc:  compile with Microsoft Visual C++"



:END