Changeset 5294


Ignore:
Timestamp:
Mar 11, 2001, 5:42:28 PM (25 years ago)
Author:
bird
Message:

Configure win32k.sys as well.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Configure.cmd

    r4716 r5294  
    1 /* $Id: Configure.cmd,v 1.1 2000-12-02 23:39:42 bird Exp $
     1/* $Id: Configure.cmd,v 1.2 2001-03-11 16:42:28 bird Exp $
    22 *
    33 * Configuration script.
     
    2121    /* strings */
    2222    sIncFile='Makefile.inc';
     23
     24    /* Status */
     25    if (fInteractive) then
     26        say 'Configuring Odin32...';
     27
    2328
    2429    /* delete old makefile.inc file */
     
    5257        call stream sIncFile, 'c', 'close';
    5358
     59
    5460        /*
    55          * Display output.
     61         * Configure Win32k.
     62         */
     63        if (fInteractive) then
     64            say 'Configuring Win32k...';
     65
     66        sOldDir = directory();
     67        if (directory('.\src\win32k') <> '') then
     68        do
     69            '@call .\configure.cmd' fNonInteractive
     70            if (rc <> 0) then
     71            do
     72                call directory(sOldDir);
     73                exit(rc);
     74            end
     75        end
     76        else
     77        do
     78            say 'oops! failed to change directory to .\src\win32k.';
     79            exit(2);
     80        end
     81        call directory(sOldDir);
     82
     83
     84        /*
     85         * Display start info.
    5686         */
    5787        if (fInteractive = 1) then
Note: See TracChangeset for help on using the changeset viewer.