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
RevLine 
[6916]1# $Id: makefile,v 1.80 2001-10-01 01:37:38 bird Exp $
[4]2
3#
[4722]4# Odin32 API
[4]5#
6# Top of the src tree makefile
7#
8#
[2715]9# Usage: nmake ( all | libs | dep | clean )
[4]10#
11# all: Build the entire src tree.
[1585]12# lib: Builds the libraries.
[2715]13# dep: Builds depenency information for the entire src tree.
[4]14# clean: Bring src tree back to a "virgin" state.
15#
16#
17#
[2715]18
19
[4644]20#
21# Build environment.
22#
[4722]23!include ../makefile.inc
[4]24
[1492]25
[2734]26#
27# Exclude lists which is to be passed in to DOWITHDIRS
28#
[6376]29NOTTOBEMADE = CVS;pe2lx;odin32api;odinwps;spy;odinldr;msvcrt;ws2help;win16ldr;oslib;custombuild # generally not made
[2743]30NOTDLLS = $(NOTTOBEMADE);peldr;dllentry # not dlls
31NOTHAVELIBS = $(NOTTOBEMADE);peldr # don't generate libs
[2932]32NOTWIN32DLLS= $(NOTDLLS);win32k;odincrt;dllentry # not win32 dlls.
[1492]33
[1585]34
[4644]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#
[6916]40EXTRA =
[4644]41!ifdef SMP
42EXTRA = -r
43!endif
44!ifdef MASSIVE
45EXTRA = -s start "Odin32 Massive Build" /B /C
46!endif
[6916]47# TEMPORARY: ignore return codes while we're working with watcom and nmake.
48!if defined(WAT) && defined(NMAKE)
49EXTRA = $(EXTRA) -i
50!endif
[4]51
[4644]52
[2909]53#
[4644]54# All rule. Make libraries and then build every directory.
[2909]55#
[4644]56all: libs build
57
58
59
[2909]60#
[4644]61# Smp rule - Dual build. Starts a second build process after libraries
62# was made.
63#
64smp: startsmp libs build
[1585]65
[4644]66startsmp: # Internal helper for the smp rule.
67 start "Odin32 SMP Build Process" /B $(MAKE_CMD) SMP=1 libs build
[2909]68
69
[4644]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:
[6872]79 @$(DOWITHDIRS) -e$(NOTTOBEMADE) -lbld$(CCENV)$(DEBUG) -c $(EXTRA) \
[4644]80 $(MAKE_CMD) all
[1585]81
[4644]82lib libs:
[6872]83 @$(DOWITHDIRS) -e$(NOTHAVELIBS) -c -llib $(EXTRA) \
[4644]84 $(MAKE_CMD) lib
85
[2715]86dep:
[6872]87 @$(DOWITHDIRS) -e$(NOTTOBEMADE) -c -ldep $(EXTRA) \
[6540]88 $(CMDQD_SUB) $(MAKE_CMD) NODEP=1 dep
89 $(CMDQD_WAIT)
[2715]90
[4]91clean:
[6872]92 @$(DOWITHDIRS) -e$(NOTTOBEMADE) -c -lcln$(CCENV)$(DEBUG) $(EXTRA) \
[6540]93 $(CMDQD_SUB) $(MAKE_CMD) NODEP=1 clean
94 $(CMDQD_WAIT)
[1649]95
[6447]96$(COMMONRULES:clean dep lib all=):
[6872]97 @$(DOWITHDIRS) -e$(NOTTOBEMADE) -c -l$@$(CCENV)$(DEBUG) $(EXTRA) \
[6447]98 $(MAKE_CMD) $@
[2743]99
[6447]100
[2743]101#
[6422]102# Custom rules
103#
[6895]104CUSTOMBUILD = kernel32 user32 gdi32 comctl32 comdlg32 shell32 shlwapi \
105 msvfw32 wsock32 winmm ole32 rpcrt4 version lz32 riched32
[6422]106custombuild:
[6872]107 @$(DODIRS) "$(CUSTOMBUILD)" $(MAKE_CMD) all CUSTOMBUILD=1
108 @$(DODIRS) ".\win32k\lib custombuild" $(MAKE_CMD) all
[6422]109
110custombuild_all custombuild_clean custombuild_dep:
[6872]111 @$(DODIRS) "$(CUSTOMBUILD)" $(MAKE_CMD) $(@:custombuild_=) CUSTOMBUILD=1
112 @$(DODIRS) ".\win32k\lib custombuild" $(MAKE_CMD) $(@:custombuild_=)
[6422]113
114
115#
[2743]116# Odin32 API DB Management
117#
[2749]118APIImport:
[6872]119 @$(DOWITHDIRS) -e$(NOTWIN32DLLS) -cp \
[2743]120 ..\..\tools\bin\APIImport.cmd
121
[2749]122StateUpd:
[2788]123 ..\tools\bin\StateUpd.exe -io+
[6872]124 -@$(DOWITHDIRS) -e$(NOTWIN32DLLS) -cp -i \
[3941]125 ..\..\tools\bin\StateUpd.cmd -ie- -ib-
[6872]126 @$(DODIRS) ".\win32k" $(MAKE_CMD) StateUpd
[2788]127 ..\tools\bin\StateUpd.exe -io+
[2743]128
[2749]129ReadSignals:
[6872]130 -@$(DOWITHDIRS) -e$(NOTWIN32DLLS:win32k;=) -cp -i \
[2749]131 IF EXIST signals.log list signals.log
132
133ReadStateUpdLogs:
[6872]134 -@$(DOWITHDIRS) -e$(NOTWIN32DLLS:win32k;=) -cp -i \
[2751]135 IF EXIST stateupd.log list stateupd.log
[2749]136
137ReadAPIImportLogs:
[6872]138 -@$(DOWITHDIRS) -e$(NOTWIN32DLLS) -cp -i \
[2749]139 IF EXIST apiimport.log list apiimport.log
140
141CleanDBLogs:
[6872]142 @$(DOWITHDIRS) -e$(NOTWIN32DLLS:win32k;=) -cp \
[2743]143 $(RM) apiimport.log signals.log stateupd.log apiimport.def
[2750]144 $(RM) signals.log stateupd.log
[2743]145
[6916]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.