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

Annotation of OpenXM_contrib2/windows/makebin32.bat, Revision 1.1

1.1     ! ohara       1: @rem $OpenXM$
        !             2: @echo off
        !             3:
        !             4: set ARCH=x86
        !             5: if not defined WITH_PARI set WITH_PARI=yes
        !             6:
        !             7: cd gc-7.1
        !             8: nmake -f NT_STATIC_THREADS_MAKEFILE gc.lib
        !             9: cd ..
        !            10:
        !            11: if "%WITH_PARI%" == "yes" (
        !            12:   cd pari20
        !            13:   nmake -f Makefile.vc6
        !            14:   cd ..
        !            15: )
        !            16:
        !            17: for %%i in ( asir2000lib engine2000 cpp asir32gui ) do (
        !            18:   cd %%i
        !            19:   nmake -f Makefile.vc
        !            20:   cd ..
        !            21: )
        !            22:
        !            23: cd asir32gui
        !            24: nmake -f Makefile.vc LANG=en
        !            25: cd ..
        !            26:
        !            27: cd ..\asir2000
        !            28: nmake -f Makefile.vc
        !            29: cd ..\windows

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>