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

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

Revision 1.3, Tue Mar 17 13:38:22 2009 UTC (15 years, 1 month ago) by ohara
Branch: MAIN
Changes since 1.2: +8 -2 lines

Risa/Asir for Windows x64 uses the pari library
if the environment variable WITH_PARI does not be set to no.

@rem $OpenXM: OpenXM_contrib2/windows/makebin64.bat,v 1.3 2009/03/17 13:38:22 ohara Exp $
@echo off

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

cd gc-7.1
nmake -f NT_X64_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