Changeset 3605 for trunk/src


Ignore:
Timestamp:
May 26, 2000, 12:12:49 AM (25 years ago)
Author:
bird
Message:

Added code which ensures that the output directories are created.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/win32k/Makefile

    r3411 r3605  
    11################################################################################
    2 # $Id: Makefile,v 1.42 2000-04-17 01:56:47 bird Exp $
     2# $Id: Makefile,v 1.43 2000-05-25 22:12:49 bird Exp $
    33#
    44# Win32k makefile.
     
    494494!endif
    495495
     496
     497################################################################################
     498# Create output directories.
     499################################################################################
     500!if [mkdir bin > nul 2>&1]
     501!endif
     502!if [mkdir $(WIN32KBIN) > nul 2>&1]
     503!endif
     504!if [mkdir list > nul 2>&1]
     505!endif
     506!if [mkdir $(WIN32KLIST) > nul 2>&1]
     507!endif
     508!if [mkdir object > nul 2>&1]
     509!endif
     510!if [mkdir $(WIN32KOBJ) > nul 2>&1]
     511!endif
     512
     513
Note: See TracChangeset for help on using the changeset viewer.