all: int.dll

#
# -bt=nt	type=Windows NT
# -bd		build DLL
# -s		no stack overflow checking
#

int.obj: int.c
	wcc386 -bt=nt -bd -s int.c

int.dll: int.obj
	wlink @int
