[BACK]Return to makebin32.bat CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / windows

File: [local] / OpenXM_contrib2 / windows / Attic / makebin32.bat (download)

Revision 1.1, Wed Mar 11 09:52:06 2009 UTC (15 years, 2 months ago) by ohara
Branch: MAIN

Add a batch file for building Risa/Asir (x86) by Visual Studio 2008.

@rem $OpenXM: OpenXM_contrib2/windows/makebin32.bat,v 1.1 2009/03/11 09:52:06 ohara Exp $
@echo off

set ARCH=x86
if not defined WITH_PARI set WITH_PARI=yes

cd gc-7.1
nmake -f NT_STATIC_THREADS_MAKEFILE gc.lib
cd ..

if "%WITH_PARI%" == "yes" (
  cd pari20
  nmake -f Makefile.vc6
  cd ..
)

for %%i in ( asir2000lib engine2000 cpp asir32gui ) do (
  cd %%i
  nmake -f Makefile.vc
  cd ..
)

cd asir32gui
nmake -f Makefile.vc LANG=en
cd ..

cd ..\asir2000
nmake -f Makefile.vc
cd ..\windows