summaryrefslogtreecommitdiffstats
path: root/private/oleauto/sample/hello/makefile
blob: d1e478b86fa3177c0834c862e8d3da9badb0b826 (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
####
#makefile - makefile for hello.exe
#
#       Copyright (C) 1992-1994, Microsoft Corporation
#
#Purpose:
#  Builds the OLE 2.0 sample IDispatch server, hello.exe.
#
#
#  Usage: NMAKE                 ; build with defaults
#     or: NMAKE option          ; build with the given option(s)
#     or: NMAKE clean           ; erase all compiled files
#
#     option: dev = [win16 | win32]    ; dev=win16 is the default
#             DEBUG=[0|1]              ; DEBUG=1 is the default
#             HOST=[DOS | NT]          ; HOST=DOS (for win16)
#                                      ; HOST=NT (for win32)
#
#Notes:
#  This makefile assumes that the PATH, INCLUDE and LIB environment
#  variables are setup properly.
#
##############################################################################


##########################################################################
#
# Default Settings
#

!if "$(dev)" == ""
dev = win16
!endif

!if !("$(dev)" == "win16" || "$(dev)" == "win32")
!error Invalid dev option, choose from [win16 | win32]
!endif

!if "$(dev)" == "win16"
TARGET  = WIN16
!if "$(HOST)" == ""
HOST  = DOS
!endif
!endif

!if "$(dev)" == "win32"
TARGET  = WIN32
HOST  = NT
!endif

!if "$(dev)" == "mac"
!error Mac build is currently not supported
!endif

!if "$(DEBUG)" == ""
DEBUG = 1
!endif

!if "$(CPU)"=="PPC"
TYPLIBTARGET=PPC
!else
TYPLIBTARGET=$(TARGET)
!endif


##########################################################################
#
# WIN16 Settings
#
!if "$(TARGET)" == "WIN16"

CC   = cl
LINK = link
!if "$(HOST)" == "DOS"
WX   = wx /w 
!else
WX   =
!endif

RCFLAGS = -dWIN16
CFLAGS = -W3 -AM -GA -GEs -DWIN16 -I$(OBJDIR)
LINKFLAGS = /NOD /NOI /BATCH /ONERROR:NOEXE

LIBS = libw.lib mlibcew.lib

!if "$(DEBUG)" == "1"
CFLAGS = $(CFLAGS) -Od -Zi -D_DEBUG $(CL)
LINKFLAGS = $(LINKFLAGS) /COD
!else
CFLAGS = $(CFLAGS) -Ox $(CL)
LINKFLAGS = $(LINKFLAGS) /FAR /PACKC
!endif
!endif


##########################################################################
#
# WIN32 Settings
#
!if "$(TARGET)" == "WIN32"

!if "$(CPU)"==""

!if "$(PROCESSOR_ARCHITECTURE)"=="" || "$(PROCESSOR_ARCHITECTURE)"=="x86"
CPU=i386
!else
CPU=$(PROCESSOR_ARCHITECTURE)
!endif

!endif #CPU

!if "$(CPU)" == "i386"
CC   = cl386
LINK = link
CFLAGS = -D_X86_=1
!endif
!if "$(CPU)" == "MIPS"
CC   = cl
LINK = link
CFLAGS = -D_MIPS_=1 -DUNICODE
!endif
!if "$(CPU)" == "ALPHA"
CC   = claxp
LINK = link
CFLAGS = -D_ALPHA_=1 -DUNICODE
!endif
!if "$(CPU)" == "PPC"
CC   = cl
LINK = link
CFLAGS = -D_PPC_=1 -DUNICODE
TYPLIBTARGET=PPC32
!endif

WX = 
RCFLAGS = -dWIN32
CFLAGS = $(CFLAGS) -nologo -W3 -DWIN32 -DINC_OLE2 -D_MT $(CL) -I$(OBJDIR)
LINKFLAGS = -Incremental:NO -Pdb:NONE -subsystem:windows -entry:WinMainCRTStartup -machine:$(CPU) 

LIBS = libc.lib kernel32.lib user32.lib


!if "$(DEBUG)" == "1"
CFLAGS = $(CFLAGS) -Od -Z7 -D_DEBUG $(CL)
LINKFLAGS = -debug:full -debugtype:cv,coff $(LINKFLAGS) 
!else
CFLAGS = $(CFLAGS) -Ox
!endif
!endif


##########################################################################
#
# Application Settings
#

APPS = hello

SRCDIR = $(OLEPROG)\SAMPLE\$(APPS)

!if "$(TARGET)" == "MAC" && "$(CPU)"=="PPC"
OBJDIR=$(SRCDIR)\macppc
!else
OBJDIR=$(SRCDIR)\$(TARGET)
!endif

!if [if not exist $(OBJDIR)\*.* mkdir $(OBJDIR)] != 0
!endif


!if "$(TARGET)" == "WIN16"
LIBS = ole2.lib compobj.lib ole2disp.lib typelib.lib $(LIBS)
!endif
!if "$(TARGET)" == "WIN32"
LIBS = ole32.lib oleaut32.lib uuid.lib $(LIBS)
!endif

OBJS = \
	$(OBJDIR)\main.obj     \
	$(OBJDIR)\hello.obj    \
	$(OBJDIR)\hellopro.obj \
	$(OBJDIR)\clsid.obj


##########################################################################
#
# Build rules
#

{$(SRCDIR)}.cpp{$(OBJDIR)}.obj:
    @echo Compiling $<...
    $(CC) -c -Fo$@ $<

{$(SRCDIR)}.c{$(OBJDIR)}.obj:
    @echo Compiling $<...
    $(CC) -c -Fo$@ $<



##########################################################################
#
# Default Goal
#

goal : setflags $(OBJDIR)\$(APPS).exe

setflags :
	set CL=$(CFLAGS)


##########################################################################
#
# Clean (erase) generated files
#
clean :
    if exist $(OBJDIR)\*.obj	   del $(OBJDIR)\*.obj
    if exist $(OBJDIR)\$(APPS).exe del $(OBJDIR)\$(APPS).exe
    if exist $(OBJDIR)\$(APPS).tlb del $(OBJDIR)\$(APPS).tlb
    if exist $(OBJDIR)\$(APPS).map del $(OBJDIR)\$(APPS).map
    if exist $(OBJDIR)\$(APPS).res del $(OBJDIR)\$(APPS).res
    if exist $(OBJDIR)\$(APPS).rs  del $(OBJDIR)\$(APPS).rs
    if exist $(OBJDIR)\ihello.h    del $(OBJDIR)\ihello.h
    if exist $(OBJDIR)\*.log	   del $(OBJDIR)\*.log
    if exist $(SRCDIR)\*.pdb	   del $(SRCDIR)\*.pdb


##########################################################################
#
# Application Build (WIN16 Specific)
#

!if "$(TARGET)" == "WIN16"
$(OBJDIR)\$(APPS).exe : $(OBJS) $(SRCDIR)\$(APPS).def $(OBJDIR)\$(APPS).res $(SRCDIR)\$(APPS).ico
	link $(LINKFLAGS) @<<
$(OBJS),
$@,$(OBJDIR)\$(APPS).map/map,
$(LIBS),
$(SRCDIR)\$(APPS).def
<<
	rc -k -t $(OBJDIR)\$(APPS).res $@
!endif


##########################################################################
#
# Application Build (WIN32 Specific)
#
!if "$(TARGET)" == "WIN32"
$(OBJDIR)\$(APPS).exe : $(OBJS) $(SRCDIR)\$(APPS).def $(OBJDIR)\$(APPS).res $(SRCDIR)\$(APPS).ico
      cvtres -r -$(CPU) $(OBJDIR)\$(APPS).res -o $(OBJDIR)\$(APPS).rs
      $(LINK) @<< 
        $(LINKFLAGS)
        -out:$@ 
        -map:$*.map
        $(OBJS)
	$(OBJDIR)\$(APPS).rs
        $(LIBS)
<<
!endif


##########################################################################
#
# Application Build (Common)
#

$(OBJDIR)\$(APPS).res : $(SRCDIR)\$(APPS).rc
	rc $(RCFLAGS) -r -fo$@ $?


##########################################################################
#
# Dependencies
#

$(OBJDIR)\ihello.h : $(SRCDIR)\hello.odl
	if exist $(OBJDIR)\ihello.h  del $(OBJDIR)\ihello.h
	if exist $(OBJDIR)\hello.tlb  del $(OBJDIR)\hello.tlb
	$(WX) mktyplib /D$(TYPLIBTARGET) /h $(OBJDIR)\ihello.h /o $(OBJDIR)\hello.log /tlb $(OBJDIR)\hello.tlb $(SRCDIR)\hello.odl
	
$(OBJDIR)\main.obj : $(SRCDIR)\main.cpp $(SRCDIR)\hello.h $(OBJDIR)\ihello.h
	$(CC) -c -Fo$@ $(SRCDIR)\main.cpp

$(OBJDIR)\hello.obj : $(SRCDIR)\hello.cpp $(SRCDIR)\hello.h $(SRCDIR)\resource.h
	$(CC) -c -Fo$@ $(SRCDIR)\hello.cpp

$(OBJDIR)\hellopro.obj : $(SRCDIR)\hellopro.cpp $(SRCDIR)\hello.h $(OBJDIR)\ihello.h
	$(CC) -c -Fo$@ $(SRCDIR)\hellopro.cpp

$(OBJDIR)\clsid.obj : $(SRCDIR)\clsid.c $(SRCDIR)\clsid.h
	$(CC) -c -Fo$@ $(SRCDIR)\clsid.c