#
# Include some standard NT make macros
# which reside in \mstools\h

!include <ntwin32.mak>

# fix a few crufts...
cc       = cl386 -nologo
cflags   = -W2 -G3 -D_X86_=1 -DUSE_MYPOPEN
cvarsdll = $(cvars)
ldebug   = -debug:full -debugtype:both
MAKE     = nmake -nologo

MSTOOLS = d:\mstools

vobj     = $(MSTOOLS)\lib\setargv.obj

.SUFFIXES:	.y .l .rc .res .cpp

LEX           = flex

LEXFLAGS      =

YACC          = yacc

YFLAGS        = -d

DEST	      = $(HOME)\bin

EXTHDRS	      = $(MSTOOLS)\h\assert.h \
		$(MSTOOLS)\h\cderr.h \
		$(MSTOOLS)\h\commdlg.h \
		$(MSTOOLS)\h\ctype.h \
		$(MSTOOLS)\h\dde.h \
		$(MSTOOLS)\h\ddeml.h \
		$(MSTOOLS)\h\direct.h \
		$(MSTOOLS)\h\dlgs.h \
		$(MSTOOLS)\h\drivinit.h \
		$(MSTOOLS)\h\errno.h \
		$(MSTOOLS)\h\excpt.h \
		$(MSTOOLS)\h\fcntl.h \
		$(MSTOOLS)\h\io.h \
		$(MSTOOLS)\h\lzexpand.h \
		$(MSTOOLS)\h\mmsystem.h \
		$(MSTOOLS)\h\nb30.h \
		$(MSTOOLS)\h\ole.h \
		$(MSTOOLS)\h\process.h \
		$(MSTOOLS)\h\rpc.h \
		$(MSTOOLS)\h\rpcdce.h \
		$(MSTOOLS)\h\rpcdcep.h \
		$(MSTOOLS)\h\rpcnsi.h \
		$(MSTOOLS)\h\rpcnterr.h \
		$(MSTOOLS)\h\setjmp.h \
		$(MSTOOLS)\h\shellapi.h \
		$(MSTOOLS)\h\signal.h \
		$(MSTOOLS)\h\stdarg.h \
		$(MSTOOLS)\h\stdio.h \
		$(MSTOOLS)\h\stdlib.h \
		$(MSTOOLS)\h\string.h \
		$(MSTOOLS)\h\sys/stat.h \
		$(MSTOOLS)\h\sys/types.h \
		$(MSTOOLS)\h\sys/utime.h \
		$(MSTOOLS)\h\time.h \
		$(MSTOOLS)\h\varargs.h \
		$(MSTOOLS)\h\winbase.h \
		$(MSTOOLS)\h\wincon.h \
		$(MSTOOLS)\h\windef.h \
		$(MSTOOLS)\h\windows.h \
		$(MSTOOLS)\h\winerror.h \
		$(MSTOOLS)\h\wingdi.h \
		$(MSTOOLS)\h\winmm.h \
		$(MSTOOLS)\h\winnetwk.h \
		$(MSTOOLS)\h\winnls.h \
		$(MSTOOLS)\h\winnt.h \
		$(MSTOOLS)\h\winperf.h \
		$(MSTOOLS)\h\winreg.h \
		$(MSTOOLS)\h\winsock.h \
		$(MSTOOLS)\h\winspool.h \
		$(MSTOOLS)\h\winsvc.h \
		$(MSTOOLS)\h\winuser.h \
		$(MSTOOLS)\h\winver.h

HDRS	      = arg.h \
		array.h \
		cmd.h \
		config.h \
		extern.h \
		form.h \
		handy.h \
		hash.h \
		intern.h \
		nt.h \
		nt.i \
		pchlvl.h \
		perl.h \
		perly.h \
		regcomp.h \
		regexp.h \
		spat.h \
		stab.h \
		str.h \
		util.h

LDFLAGS	      = $(linkdebug) $(conlflags)

LIBS	      = $(conlibs) wsock32.lib advapi32.lib
#LIBS	      = $(guilibsdll)

LINKER	      = $(link)

MAKEFILE      = Makefile

OBJS	      = array.obj \
		cmd.obj \
		cons.obj \
		consarg.obj \
		doarg.obj \
		doio.obj \
		dolist.obj \
		dump.obj \
		eval.obj \
		form.obj \
		hash.obj \
		nt.obj \
		perl.obj \
		perly.obj \
		regcomp.obj \
		regexec.obj \
		stab.obj \
		str.obj \
		toke.obj \
		usersub.obj \
		util.obj

RBJS          =

PROGRAM	      = perl.exe

SRCS	      = array.c \
		cmd.c \
		cons.c \
		consarg.c \
		doarg.c \
		doio.c \
		dolist.c \
		dump.c \
		eval.c \
		form.c \
		hash.c \
		nt.c \
		perl.c \
		perlecho.c \
		perlglob.c \
		perly.c \
		perly.y \
		regcomp.c \
		regexec.c \
		stab.c \
		str.c \
		toke.c \
		usersub.c \
		util.c

all:		$(PROGRAM) perlglob.exe

$(PROGRAM):	$(OBJS)  $(RBJS)
		$(LINKER) $(LDFLAGS) $(OBJS) $(RBJS) -out:$(PROGRAM) $(LIBS)

perlglob.exe:	perlglob.obj
		$(LINKER) $(LDFLAGS) perlglob.obj $(vobj) -out:$@ $(LIBS)

optimized:
		$(MAKE) NODEBUG=1 all

clean:;		-del/f *.obj *.exe >nul: 2>&1

depend:;	mkmf -f $(MAKEFILE) PROGRAM=$(PROGRAM) DEST=$(DEST)

install:	$(PROGRAM)
		copy $(PROGRAM) $(DEST)

program:	$(PROGRAM)

update:		$(DEST)\$(PROGRAM)

$(DEST)\$(PROGRAM): $(SRCS) $(LIBS) $(HDRS) $(EXTHDRS)
		@make -f $(MAKEFILE) DEST=$(DEST) install

.c.obj:
		$(cc) $(cflags) $(cdebug) $(cvarsdll) -c $<

.cpp.obj:
		$(cc) $(cflags) $(cdebug) $(cvarsdll) -c $<

.y.c:
		$(YACC) $(YFLAGS) $*.y
		-del $*.c
		rename ytab.c $*.c

.y.obj:
		$(YACC) $(YFLAGS) $*.y
		$(cc) $(cflagsdll) $(cdebug) $(cvarsdll) ytab.c
		-del ytab.c $*.obj
		rename ytab.obj $*.obj

.l.c:
		$(LEX) $(LEXFLAGS) $*.l
		-del $*.c
		rename lexyy.c $*.c

.l.obj:
		$(LEX) $(LEXFLAGS) $*.l
		$(cc) $(cflagsdll) $(cdebug) $(cvarsdll) lexyy.c
		-del lexyy.c $*.obj
		rename lexyy.obj $*.obj
	
.rc.res:
		rc -DWIN32 -r -fo $@ $<

.res.rbj:
                cvtres -$(CPU) $< -o $@

.rc.rbj:	
		rc -DWIN32 -r -fo $*.res $<
                cvtres -$(CPU) $*.res -o $@
###
array.obj: EXTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h
cmd.obj: EXTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h $(MSTOOLS)\h\varargs.h
cons.obj: EXTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h perly.h
consarg.obj: EXTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h
doarg.obj: EXTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h $(MSTOOLS)\h\signal.h
doio.obj: EXTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h $(MSTOOLS)\h\fcntl.h
dolist.obj: EXTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h
dump.obj: EXTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h
eval.obj: EXTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h $(MSTOOLS)\h\signal.h $(MSTOOLS)\h\fcntl.h
form.obj: EXTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h
hash.obj: EXTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h $(MSTOOLS)\h\fcntl.h
malloc.obj: EXTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h
nt.obj: EXTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h $(MSTOOLS)\h\fcntl.h $(MSTOOLS)\h\assert.h
perl.obj: EXTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h perly.h pchlvl.h
perlecho.obj: $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\string.h
perlglob.obj: $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\string.h
perly.obj: INTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h
perly.obj: INTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h
regcomp.obj: EXTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h INTERN.h regcomp.h
regexec.obj: EXTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h regcomp.h
stab.obj: EXTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h $(MSTOOLS)\h\signal.h
str.obj: EXTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h perly.h
toke.obj: EXTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h perly.h $(MSTOOLS)\h\fcntl.h
usersub.obj: EXTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h
util.obj: EXTERN.h perl.h config.h nt.h $(MSTOOLS)\h\stdarg.h \
	$(MSTOOLS)\h\windows.h $(MSTOOLS)\h\excpt.h $(MSTOOLS)\h\windef.h \
	$(MSTOOLS)\h\winnt.h $(MSTOOLS)\h\ctype.h $(MSTOOLS)\h\string.h \
	$(MSTOOLS)\h\winbase.h $(MSTOOLS)\h\winerror.h $(MSTOOLS)\h\wingdi.h \
	$(MSTOOLS)\h\winuser.h $(MSTOOLS)\h\winnls.h $(MSTOOLS)\h\winmm.h \
	$(MSTOOLS)\h\wincon.h $(MSTOOLS)\h\winver.h $(MSTOOLS)\h\winreg.h \
	$(MSTOOLS)\h\winnetwk.h $(MSTOOLS)\h\cderr.h $(MSTOOLS)\h\dde.h \
	$(MSTOOLS)\h\ddeml.h $(MSTOOLS)\h\dlgs.h $(MSTOOLS)\h\lzexpand.h \
	$(MSTOOLS)\h\mmsystem.h $(MSTOOLS)\h\nb30.h $(MSTOOLS)\h\rpc.h \
	$(MSTOOLS)\h\rpcdce.h $(MSTOOLS)\h\rpcdcep.h $(MSTOOLS)\h\rpcnsi.h \
	$(MSTOOLS)\h\rpcnterr.h $(MSTOOLS)\h\shellapi.h \
	$(MSTOOLS)\h\winperf.h $(MSTOOLS)\h\winsock.h $(MSTOOLS)\h\commdlg.h \
	$(MSTOOLS)\h\drivinit.h $(MSTOOLS)\h\winspool.h $(MSTOOLS)\h\ole.h \
	$(MSTOOLS)\h\winsvc.h $(MSTOOLS)\h\sys/types.h $(MSTOOLS)\h\direct.h \
	$(MSTOOLS)\h\process.h $(MSTOOLS)\h\io.h $(MSTOOLS)\h\time.h \
	$(MSTOOLS)\h\sys/utime.h $(MSTOOLS)\h\stdio.h $(MSTOOLS)\h\setjmp.h \
	$(MSTOOLS)\h\stdlib.h $(MSTOOLS)\h\sys/stat.h $(MSTOOLS)\h\errno.h \
	handy.h regexp.h str.h util.h form.h stab.h spat.h arg.h cmd.h \
	array.h hash.h $(MSTOOLS)\h\signal.h $(MSTOOLS)\h\varargs.h \
	$(MSTOOLS)\h\fcntl.h
