17 lines
347 B
Makefile
17 lines
347 B
Makefile
|
platform = Win16
|
||
|
CC = wcc386
|
||
|
CFLAGS = -zW
|
||
|
res1_flags = -bt=windows -30
|
||
|
|
||
|
!include ../testctl.mif
|
||
|
!include ../../master.mif
|
||
|
|
||
|
linkit : .PROCEDURE
|
||
|
@%append $(LNK) system win386
|
||
|
@%append $(LNK) option mindata=100K
|
||
|
@%append $(LNK) option maxdata=100K
|
||
|
@%append $(LNK) option stack=8k
|
||
|
|
||
|
bindit : .PROCEDURE
|
||
|
wbind $(name) -R $(name).res
|