Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
!IF 0
Copyright (c) 1989 Microsoft Corporation
Module Name:
dirs.
Abstract:
This file specifies the subdirectories of the current directory that contain component makefiles.
Author:
Donna Liu (DonnaLi) 19-Dec-1993
!ENDIF
# # This is a list of all subdirectories that build required components. # Each subdirectory name should appear on a line by itself. The build # follows the order in which the subdirectories are specified. # # WARNING: order is important. idl must be built early since it generates # headers that other directories are dependent on. if you change # this, run the following script to ensure you have not broken it. # stg must now be built before oleprx32. # # del /s /q *.* # build -cZM
DIRS= \ idl \ common \ actprops \ com \ ilib \ ole232 \ stg \ oleprx32 \ dcomss \ comcat \ dll \ olecnv32 \ oleui \ olethunk{32} \ dllhost \ catalog \ iprop \ componentdef
# # This is a list of all subdirectories that build optional components. # Each subdirectory name should appear on a line by itself. The build # follows the order in which the subdirectories are specified. #
OPTIONAL_DIRS= \ stg.w98 \
|