aboutsummaryrefslogtreecommitdiffstats
path: root/makefile
blob: 666a793415a0b6260e87886475d28ad9cbc04bee (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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
OBJS = dibthunk.obj dibcall.obj enable.obj init.obj palette.obj &
       scrsw.obj sswhook.obj modes.obj boxv.obj control.obj &
       drvlib.obj control_vxd.obj minivdd_svga.obj vmwsvxd.obj &
       scrsw_svga.obj control_svga.obj modes_svga.obj palette_svga.obj &
       pci.obj svga.obj svga3d.obj svga32.obj pci32.obj dddrv.obj &
       enable_svga.obj dibcall_svga.obj boxv_qemu.obj modes_qemu.obj &
       init_qemu.obj

INCS = -I$(%WATCOM)\h\win -Iddk -Ivmware

VER_BUILD = 10

FLAGS = -DDRV_VER_BUILD=$(VER_BUILD) -DCAP_R5G6B5_ALWAYS_WRONG

# Define HWBLT if BitBlt can be accelerated.
#FLAGS += -DHWBLT
# Define HWCURSOR if you want accelerate cursor (SVGA only)
#FLAGS += -DHWCURSOR

# Set DBGPRINT to add debug printf logging.
#DBGPRINT = 1

!ifdef DBGPRINT
FLAGS += -DDBGPRINT
OBJS  += dbgprint.obj dbgprint32.obj
# Need this to work with pre-made boxv9x.lnk
DBGFILE = file dbgprint.obj
DBGFILE32 = file dbgprint32.obj
!else
DBGFILE =
DBGFILE32 =
!endif
CFLAGS = -q -wx -s -zu -zls -6 -fp6
CFLAGS32 = -q -wx -s -zls -6s -fp6 -mf
CC = wcc
CC32 = wcc386

# Log VXD to com2
!ifdef DBGPRINT
CFLAGS32 += -DCOM2
!endif

all : boxvmini.drv vmwsmini.drv qemumini.drv vmwsmini.vxd

# Object files
drvlib.obj : drvlib.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<

boxv.obj : boxv.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<
	
boxv_qemu.obj : boxv_qemu.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<

pci.obj : vmware/pci.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<

pci32.obj : vmware/pci32.c .autodepend
	$(CC32) $(CFLAGS32) $(INCS) $(FLAGS) $<

svga.obj : vmware/svga.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<

svga32.obj : vmware/svga32.c .autodepend
	$(CC32) $(CFLAGS32) $(INCS) $(FLAGS) $<

svga3d.obj : vmware/svga3d.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<

dbgprint.obj : dbgprint.c .autodepend
	$(CC) $(CFLAGS) -zW $(FLAGS) $<

dbgprint32.obj : dbgprint32.c .autodepend
	$(CC32) $(CFLAGS32) $(FLAGS) $<

dibcall.obj : dibcall.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<
	
dibcall_svga.obj : dibcall_svga.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<

dibthunk.obj : dibthunk.asm
	wasm -q $(FLAGS) $<

enable.obj : enable.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<

enable_svga.obj : enable_svga.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<

init.obj : init.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<
	
init_qemu.obj : init_qemu.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<

control.obj : control.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<

control_svga.obj : control_svga.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<

control_vxd.obj : control_vxd.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<

palette.obj : palette.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<
	
palette_svga.obj : palette_svga.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<

sswhook.obj : sswhook.asm
	wasm -q $(FLAGS) $<

modes.obj : modes.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<
	
modes_svga.obj : modes_svga.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<

modes_qemu.obj : modes_qemu.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<

scrsw.obj : scrsw.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<

scrsw_svga.obj : scrsw_svga.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<

vmwsvxd.obj : vmwsvxd.c .autodepend
	$(CC32) $(CFLAGS32) $(INCS) $(FLAGS) $<

minivdd_svga.obj : minivdd_svga.c .autodepend
	$(CC32) $(CFLAGS32) $(INCS) $(FLAGS) $<

dddrv.obj : dddrv.c .autodepend
	$(CC) $(CFLAGS) -zW $(INCS) $(FLAGS) $<

# Resources
boxvmini.res : res/boxvmini.rc res/colortab.bin res/config.bin res/fonts.bin res/fonts120.bin .autodepend
	wrc -q -r -ad -bt=windows -fo=$@ -Ires -I$(%WATCOM)/h/win $(FLAGS) res/boxvmini.rc
	
vmwsmini.res : res/vmwsmini.rc res/colortab.bin res/config.bin res/fonts.bin res/fonts120.bin .autodepend
	wrc -q -r -ad -bt=windows -fo=$@ -Ires -I$(%WATCOM)/h/win $(FLAGS) res/vmwsmini.rc

qemumini.res : res/qemumini.rc res/colortab.bin res/config.bin res/fonts.bin res/fonts120.bin .autodepend
	wrc -q -r -ad -bt=windows -fo=$@ -Ires -I$(%WATCOM)/h/win $(FLAGS) res/qemumini.rc

vmws_vxd.res : res/vmws_vxd.rc .autodepend
	wrc -q -r -ad -bt=nt -fo=$@ -Ires -I$(%WATCOM)/h/win $(FLAGS) res/vmws_vxd.rc

res/colortab.bin : res/colortab.c
	wcc -q $(INCS) $<
	wlink op quiet disable 1014, 1023 name $@ sys dos output raw file colortab.obj

res/config.bin : res/config.c
	wcc -q $(INCS) $<
	wlink op quiet disable 1014, 1023 name $@ sys dos output raw file config.obj

res/fonts.bin : res/fonts.c .autodepend
	wcc -q $(INCS) $<
	wlink op quiet disable 1014, 1023 name $@ sys dos output raw file fonts.obj

res/fonts120.bin : res/fonts120.c .autodepend
	wcc -q $(INCS) $<
	wlink op quiet disable 1014, 1023 name $@ sys dos output raw file fonts120.obj

# Libraries
dibeng.lib : ddk/dibeng.lbc
	wlib -b -q -n -fo -ii @$< $@

boxvmini.drv : $(OBJS) boxvmini.res dibeng.lib
	wlink op quiet, start=DriverInit_ disable 2055 $(DBGFILE) @<<boxvmini.lnk
system windows dll initglobal
file dibthunk.obj
file dibcall.obj
file drvlib.obj
file enable.obj
file init.obj
file palette.obj
file scrsw.obj
file sswhook.obj
file modes.obj
file boxv.obj
file control.obj
file dddrv.obj
name boxvmini.drv
option map=boxvmini.map
library dibeng.lib
library clibs.lib
option modname=DISPLAY
option description 'DISPLAY : 100, 96, 96 : DIB Engine based Mini display driver.'
option oneautodata
segment type data preload fixed
segment '_TEXT'  preload shared
segment '_INIT'  preload moveable
export BitBlt.1
export ColorInfo.2
export Control.3
export Disable.4
export Enable.5
export EnumDFonts.6
export EnumObj.7
export Output.8
export Pixel.9
export RealizeObject.10
export StrBlt.11
export ScanLR.12
export DeviceMode.13
export ExtTextOut.14
export GetCharWidth.15
export DeviceBitmap.16
export FastBorder.17
export SetAttribute.18
export DibBlt.19
export CreateDIBitmap.20
export DibToDevice.21
export SetPalette.22
export GetPalette.23
export SetPaletteTranslate.24
export GetPaletteTranslate.25
export UpdateColors.26
export StretchBlt.27
export StretchDIBits.28
export SelectBitmap.29
export BitmapBits.30
export ReEnable.31
export Inquire.101
export SetCursor.102
export MoveCursor.103
export CheckCursor.104
export GetDriverResourceID.450
export UserRepaintDisable.500
export ValidateMode.700
import GlobalSmartPageLock  KERNEL.230
<<
	wrc -q boxvmini.res $@

vmwsmini.drv : $(OBJS) vmwsmini.res dibeng.lib
	wlink op quiet, start=DriverInit_ disable 2055 $(DBGFILE) @<<vmwsmini.lnk
system windows dll initglobal
file dibthunk.obj
file dibcall_svga.obj
file drvlib.obj
file enable_svga.obj
file init.obj
file palette_svga.obj
file scrsw_svga.obj
file sswhook.obj
file modes_svga.obj
file svga.obj
file svga3d.obj
file pci.obj
file control_svga.obj
file control_vxd.obj
file dddrv.obj
name vmwsmini.drv
option map=vmwsmini.map
library dibeng.lib
library clibs.lib
option modname=DISPLAY
option description 'DISPLAY : 100, 96, 96 : DIB Engine based Mini display driver.'
option oneautodata
segment type data preload fixed
segment '_TEXT'   preload shared
segment '_INIT'   preload moveable
export BitBlt.1
export ColorInfo.2
export Control.3
export Disable.4
export Enable.5
export EnumDFonts.6
export EnumObj.7
export Output.8
export Pixel.9
export RealizeObject.10
export StrBlt.11
export ScanLR.12
export DeviceMode.13
export ExtTextOut.14
export GetCharWidth.15
export DeviceBitmap.16
export FastBorder.17
export SetAttribute.18
export DibBlt.19
export CreateDIBitmap.20
export DibToDevice.21
export SetPalette.22
export GetPalette.23
export SetPaletteTranslate.24
export GetPaletteTranslate.25
export UpdateColors.26
export StretchBlt.27
export StretchDIBits.28
export SelectBitmap.29
export BitmapBits.30
export ReEnable.31
export Inquire.101
export SetCursor.102
export MoveCursor.103
export CheckCursor.104
export GetDriverResourceID.450
export UserRepaintDisable.500
export ValidateMode.700
import GlobalSmartPageLock  KERNEL.230
<<
	wrc -q vmwsmini.res $@

qemumini.drv : $(OBJS) qemumini.res dibeng.lib
	wlink op quiet, start=DriverInit_ disable 2055 $(DBGFILE) @<<boxvmini.lnk
system windows dll initglobal
file dibthunk.obj
file dibcall.obj
file drvlib.obj
file enable.obj
file init_qemu.obj
file palette.obj
file scrsw.obj
file sswhook.obj
file modes_qemu.obj
file boxv_qemu.obj
file control.obj
file dddrv.obj
name qemumini.drv
option map=qemumini.map
library dibeng.lib
library clibs.lib
option modname=DISPLAY
option description 'DISPLAY : 100, 96, 96 : DIB Engine based Mini display driver.'
option oneautodata
segment type data preload fixed
segment '_TEXT'  preload shared
segment '_INIT'  preload moveable
export BitBlt.1
export ColorInfo.2
export Control.3
export Disable.4
export Enable.5
export EnumDFonts.6
export EnumObj.7
export Output.8
export Pixel.9
export RealizeObject.10
export StrBlt.11
export ScanLR.12
export DeviceMode.13
export ExtTextOut.14
export GetCharWidth.15
export DeviceBitmap.16
export FastBorder.17
export SetAttribute.18
export DibBlt.19
export CreateDIBitmap.20
export DibToDevice.21
export SetPalette.22
export GetPalette.23
export SetPaletteTranslate.24
export GetPaletteTranslate.25
export UpdateColors.26
export StretchBlt.27
export StretchDIBits.28
export SelectBitmap.29
export BitmapBits.30
export ReEnable.31
export Inquire.101
export SetCursor.102
export MoveCursor.103
export CheckCursor.104
export GetDriverResourceID.450
export UserRepaintDisable.500
export ValidateMode.700
import GlobalSmartPageLock  KERNEL.230
<<
	wrc -q qemumini.res $@

vmwsmini.vxd : $(OBJS) vmws_vxd.res
	wlink op quiet $(DBGFILE32) @<<vmwsmini.lnk
system win_vxd dynamic
option map=vmwsvxd.map
option nodefaultlibs
name vmwsmini.vxd
file vmwsvxd.obj
file minivdd_svga.obj
file pci32.obj
file svga32.obj
segment '_LTEXT' PRELOAD NONDISCARDABLE
segment '_TEXT'  PRELOAD NONDISCARDABLE
segment '_DATA'  PRELOAD NONDISCARDABLE
export VMWS_DDB.1
<<

# not working now
#	wrc -q vmws_vxd.res $@


# Cleanup
clean : .symbolic
    rm *.obj
    rm *.err
    rm *.lib
    rm *.drv
    rm *.vxd
    rm *.map
    rm *.res
    rm *.img
    rm res/*.obj
    rm res/*.bin
    rm vmware/*.obj

image : .symbolic boxv9x.img

# Create a 1.44MB distribution floppy image.
# NB: The mkimage tool is not supplied.
boxv9x.img : boxvmini.drv boxv9x.inf readme.txt
    if not exist dist mkdir dist
    copy boxvmini.drv dist
    copy boxv9x.inf   dist
    copy readme.txt   dist
    mkimage -l BOXV9X -o boxv9x.img dist