Changeset 1594


Ignore:
Timestamp:
Nov 4, 1999, 7:51:43 PM (26 years ago)
Author:
sandervl
Message:

smp update

Location:
trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/makefile

    r1492 r1594  
    1 # $Id: makefile,v 1.6 1999-10-28 15:23:05 sandervl Exp $
     1# $Id: makefile,v 1.7 1999-11-04 18:50:50 sandervl Exp $
    22
    33#
     
    1010#
    1111#            debug: Change to a debug build.
     12#            debugsmp: Start nmake process in background that processes all
     13#                      dlls in reverse (linking fails, but first nmake will
     14#                      correct this)
    1215#            nodebuginfo: Change to a debug build without debug info in binaries
     16#            nodebuginfosmp: Change to an SMP debug build without debug info in binaries
    1317#            release: Change to a release build.
     18#            releasesmp: Change to an SMP release build.
    1419#            all: Build the entire tree.
    1520#            clean: Bring tree back to a "virgin" state.
     
    3439                nmake -nologo all DEBUG=1
    3540
     41debugsmp:       odin_libraries  needed_tools
     42                cd src
     43                start nmake -i -f makefile.smp -nologo all DEBUG=1
     44                nmake -nologo all DEBUG=1
     45
    3646nodebuginfo:    odin_libraries  needed_tools
    3747                cd src
     48                nmake -nologo all DEBUG=1 NODEBUGINFO=1
     49
     50nodebuginfosmp: odin_libraries  needed_tools
     51                cd src
     52                start nmake -i -f makefile.smp -nologo all DEBUG=1 NODEBUGINFO=1
    3853                nmake -nologo all DEBUG=1 NODEBUGINFO=1
    3954
     
    4257                nmake -nologo all
    4358
     59releasesmp:     odin_libraries  needed_tools
     60                cd src
     61                start nmake -i -f makefile.smp -nologo all
     62                nmake -nologo all
    4463
    4564
  • trunk/src/makefile

    r1585 r1594  
    1 # $Id: makefile,v 1.31 1999-11-03 23:28:03 sandervl Exp $
     1# $Id: makefile,v 1.32 1999-11-04 18:51:43 sandervl Exp $
    22
    33#
     
    5050        cd ..\advapi32
    5151        $(MAKE_CMD)
     52        cd ..\shell32
     53        $(MAKE_CMD)
     54        cd ..\comctl32
     55        $(MAKE_CMD)
     56        cd ..\capi2032
     57        $(MAKE_CMD)
     58        cd ..\wsock32
     59        $(MAKE_CMD)
    5260        cd ..\comdlg32
    5361        $(MAKE_CMD)
    54         cd ..\comctl32
    55         $(MAKE_CMD)
    56         cd ..\capi2032
    57         $(MAKE_CMD)
    58         cd ..\wsock32
    59         $(MAKE_CMD)
    6062        cd ..\tapi32
    6163        $(MAKE_CMD)
     
    9193        $(MAKE_CMD)
    9294        cd ..\oledlg
    93         $(MAKE_CMD)
    94         cd ..\shell32
    9595        $(MAKE_CMD)
    9696        cd ..\imm32
Note: See TracChangeset for help on using the changeset viewer.