diff options
Diffstat (limited to 'make.bat')
-rw-r--r-- | make.bat | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -1,4 +1,14 @@ REM make script for Microsoft Visual C++ -set TMAKEPATH=..\tmake\lib\win32-msvc -nmake /NOLOGO -f Makefile.windows win32-msvc +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 +copy src\doxygen.pro.in src\doxygen.pro +copy src\doxytag.pro.in src\doxytag.pro +copy src\doxysearch.pro.in src\doxysearch.pro + +nmake |