source: trunk/src/makefile@ 7029

Last change on this file since 7029 was 6916, checked in by bird, 24 years ago

Include multijob starter. WATCOM: temporarily ignore return codes.

File size: 4.1 KB
Line 
1# $Id: makefile,v 1.80 2001-10-01 01:37:38 bird Exp $
2
3#
4# Odin32 API
5#
6# Top of the src tree makefile
7#
8#
9# Usage: nmake ( all | libs | dep | clean )
10#
11# all: Build the entire src tree.
12# lib: Builds the libraries.
13# dep: Builds depenency information for the entire src tree.
14# clean: Bring src tree back to a "virgin" state.
15#
16#
17#
18
19
20#
21# Build environment.
22#
23!include ../makefile.inc
24
25
26#
27# Exclude lists which is to be passed in to DOWITHDIRS
28#
29NOTTOBEMADE = CVS;pe2lx;odin32api;odinwps;spy;odinldr;msvcrt;ws2help;win16ldr;oslib;custombuild # generally not made
30NOTDLLS = $(NOTTOBEMADE);peldr;dllentry # not dlls
31NOTHAVELIBS = $(NOTTOBEMADE);peldr # don't generate libs
32NOTWIN32DLLS= $(NOTDLLS);win32k;odincrt;dllentry # not win32 dlls.
33
34
35#
36# Check for SMP and MASSIVE.
37# SMP: Working backwards thru the directories traversed by a rule.
38# MASSIVE: Spawn a child processes for each process.
39#
40EXTRA =
41!ifdef SMP
42EXTRA = -r
43!endif
44!ifdef MASSIVE
45EXTRA = -s start "Odin32 Massive Build" /B /C
46!endif
47# TEMPORARY: ignore return codes while we're working with watcom and nmake.
48!if defined(WAT) && defined(NMAKE)
49EXTRA = $(EXTRA) -i
50!endif
51
52
53#
54# All rule. Make libraries and then build every directory.
55#
56all: libs build
57
58
59
60#
61# Smp rule - Dual build. Starts a second build process after libraries
62# was made.
63#
64smp: startsmp libs build
65
66startsmp: # Internal helper for the smp rule.
67 start "Odin32 SMP Build Process" /B $(MAKE_CMD) SMP=1 libs build
68
69
70#
71# Rules which supports the SMP and MASSIVE features.
72#
73# build: Invokes the all rule in every directory.
74# clean: Invokes the clean rule in every directory.
75# lib(s): Invokes the lib rule in every directory known to support it.
76# dep: Invokes the dep rule in every directory.
77#
78build:
79 @$(DOWITHDIRS) -e$(NOTTOBEMADE) -lbld$(CCENV)$(DEBUG) -c $(EXTRA) \
80 $(MAKE_CMD) all
81
82lib libs:
83 @$(DOWITHDIRS) -e$(NOTHAVELIBS) -c -llib $(EXTRA) \
84 $(MAKE_CMD) lib
85
86dep:
87 @$(DOWITHDIRS) -e$(NOTTOBEMADE) -c -ldep $(EXTRA) \
88 $(CMDQD_SUB) $(MAKE_CMD) NODEP=1 dep
89 $(CMDQD_WAIT)
90
91clean:
92 @$(DOWITHDIRS) -e$(NOTTOBEMADE) -c -lcln$(CCENV)$(DEBUG) $(EXTRA) \
93 $(CMDQD_SUB) $(MAKE_CMD) NODEP=1 clean
94 $(CMDQD_WAIT)
95
96$(COMMONRULES:clean dep lib all=):
97 @$(DOWITHDIRS) -e$(NOTTOBEMADE) -c -l$@$(CCENV)$(DEBUG) $(EXTRA) \
98 $(MAKE_CMD) $@
99
100
101#
102# Custom rules
103#
104CUSTOMBUILD = kernel32 user32 gdi32 comctl32 comdlg32 shell32 shlwapi \
105 msvfw32 wsock32 winmm ole32 rpcrt4 version lz32 riched32
106custombuild:
107 @$(DODIRS) "$(CUSTOMBUILD)" $(MAKE_CMD) all CUSTOMBUILD=1
108 @$(DODIRS) ".\win32k\lib custombuild" $(MAKE_CMD) all
109
110custombuild_all custombuild_clean custombuild_dep:
111 @$(DODIRS) "$(CUSTOMBUILD)" $(MAKE_CMD) $(@:custombuild_=) CUSTOMBUILD=1
112 @$(DODIRS) ".\win32k\lib custombuild" $(MAKE_CMD) $(@:custombuild_=)
113
114
115#
116# Odin32 API DB Management
117#
118APIImport:
119 @$(DOWITHDIRS) -e$(NOTWIN32DLLS) -cp \
120 ..\..\tools\bin\APIImport.cmd
121
122StateUpd:
123 ..\tools\bin\StateUpd.exe -io+
124 -@$(DOWITHDIRS) -e$(NOTWIN32DLLS) -cp -i \
125 ..\..\tools\bin\StateUpd.cmd -ie- -ib-
126 @$(DODIRS) ".\win32k" $(MAKE_CMD) StateUpd
127 ..\tools\bin\StateUpd.exe -io+
128
129ReadSignals:
130 -@$(DOWITHDIRS) -e$(NOTWIN32DLLS:win32k;=) -cp -i \
131 IF EXIST signals.log list signals.log
132
133ReadStateUpdLogs:
134 -@$(DOWITHDIRS) -e$(NOTWIN32DLLS:win32k;=) -cp -i \
135 IF EXIST stateupd.log list stateupd.log
136
137ReadAPIImportLogs:
138 -@$(DOWITHDIRS) -e$(NOTWIN32DLLS) -cp -i \
139 IF EXIST apiimport.log list apiimport.log
140
141CleanDBLogs:
142 @$(DOWITHDIRS) -e$(NOTWIN32DLLS:win32k;=) -cp \
143 $(RM) apiimport.log signals.log stateupd.log apiimport.def
144 $(RM) signals.log stateupd.log
145
146
147!ifdef NMAKE
148#
149# Common: If MULTIJOBS is defined make sure cmdqd is running.
150#
151!ifndef NO_MULTIJOBS
152! ifdef MULTIJOBS
153! if [$(CMDQD) queryrunning] != 0
154! if [$(DODIRS) "$(ODIN32_BASE)\tools\cmdqd" $(MAKE_CMD) all] == 0
155! endif
156! if [$(CMDQD) init 7] == 0
157! endif
158! endif
159! endif
160!endif
161!endif
162
Note: See TracBrowser for help on using the repository browser.