blob: d0c5191d007d6477973b903e4d41632ca7dd578b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
!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. com 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= \
common \
com \
ilib \
ole232 \
stg \
oleprx32 \
dcomss \
dll \
stdclass \
olecnv32 \
olecnfg \
oleui \
dllhost \
olethunk
#
# 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=
|