# Makefile.SH
# This file is derived from Makefile.SH.  Any changes made here will
# be lost the next time you run Configure.
#  Makefile is used to generate makefile.  The only difference
#  is that makefile has the dependencies filled in at the end.
#
#
# I now supply perly.c with the kits, so don't remake perly.c without byacc
BYACC = byacc
CC = gcc
LD = ld

LDFLAGS =  -L/usr/local/lib
CLDFLAGS =  -L/usr/local/lib

SMALL = 
LARGE =  
mallocsrc = 
mallocobj = 
LNS = /bin/ln -s
RMS = rm -f
ranlib = :

# The following are mentioned only to make metaconfig include the
# appropriate questions in Configure.  If you want to change these,
# edit config.sh instead, or specify --man1dir=/wherever on
# installman commandline.
bin = /opt/dsap/3.4/perl/bin
scriptdir = /opt/dsap/3.4/perl/bin
privlib = /opt/dsap/3.4/perl/lib
man1dir = /opt/dsap/3.4/perl/man/man1
man1ext = 1
man3dir = /opt/dsap/3.4/perl/man/man3
man3ext = 3

# The following are used to build and install shared libraries for
# dynamic loading.
LDDLFLAGS = 
CCDLFLAGS = 
DLSUFFIX = .none
PLDLFLAGS = 
PLIBSUF = .a
SHRPENV = 

dynamic_ext =  
static_ext =   lib/auto/DB_File/DB_File$(LIB_EXT) lib/auto/Fcntl/Fcntl$(LIB_EXT) lib/auto/FileHandle/FileHandle$(LIB_EXT) lib/auto/GDBM_File/GDBM_File$(LIB_EXT) lib/auto/POSIX/POSIX$(LIB_EXT) lib/auto/SDBM_File/SDBM_File$(LIB_EXT) lib/auto/Safe/Safe$(LIB_EXT) lib/auto/Socket/Socket$(LIB_EXT)
ext = $(dynamic_ext) $(static_ext)
static_ext_autoinit =  
DYNALOADER = lib/auto/DynaLoader/DynaLoader$(LIB_EXT)

libs = -lnsl -lndbm -lgdbm -ldb -ldl -lm -lc -lposix -lcrypt 

public = perl  utilities translators

shellflags = 

## To use an alternate make, set $altmake in config.sh.
MAKE = make

# These variables will be used in a future version to make
# the make file more portable to non-unix systems.
AR = ar
EXE_EXT = 
LIB_EXT = .a
OBJ_EXT = .o
PATH_SEP = :

FIRSTMAKEFILE = makefile

# Any special object files needed by this architecture, e.g. os2/os2.obj
ARCHOBJS = 

.SUFFIXES: .c $(OBJ_EXT)


CCCMD = `sh $(shellflags) cflags $(perllib) $@`

private = preplibrary lib/ExtUtils/Miniperl.pm lib/Config.pm

# Files to be built with variable substitution before miniperl
# is available.
sh = Makefile.SH cflags.SH config_h.SH makeaperl.SH makedepend.SH \
	makedir.SH perl_exp.SH writemain.SH

shextract = Makefile cflags config.h makeaperl makedepend \
	makedir perl_exp writemain

# Files to be built with variable substitution after miniperl is
# available.  Dependencies handled manually below (for now).

pl = pod/pod2html.PL pod/pod2latex.PL pod/pod2man.PL pod/pod2text.PL

plextract = pod/pod2html pod/pod2latex pod/pod2man pod/pod2text

addedbyconf = UU $(shextract) $(plextract) pstruct

h1 = EXTERN.h INTERN.h XSUB.h av.h config.h cop.h cv.h dosish.h
h2 = embed.h form.h gv.h handy.h hv.h keywords.h mg.h op.h
h3 = opcode.h patchlevel.h perl.h perly.h pp.h proto.h regcomp.h
h4 = regexp.h scope.h sv.h unixish.h util.h
h = $(h1) $(h2) $(h3) $(h4)

c1 = $(mallocsrc) av.c scope.c op.c doop.c doio.c dump.c hv.c mg.c
c2 = perl.c perly.c pp.c pp_hot.c pp_ctl.c pp_sys.c regcomp.c regexec.c
c3 = gv.c sv.c taint.c toke.c util.c deb.c run.c globals.c

c = $(c1) $(c2) $(c3) miniperlmain.c perlmain.c

obj1 = $(mallocobj) gv$(OBJ_EXT) toke$(OBJ_EXT) perly$(OBJ_EXT) op$(OBJ_EXT) regcomp$(OBJ_EXT) dump$(OBJ_EXT) util$(OBJ_EXT) mg$(OBJ_EXT)
obj2 = hv$(OBJ_EXT) av$(OBJ_EXT) run$(OBJ_EXT) pp_hot$(OBJ_EXT) sv$(OBJ_EXT) pp$(OBJ_EXT) scope$(OBJ_EXT) pp_ctl$(OBJ_EXT) pp_sys$(OBJ_EXT)
obj3 = doop$(OBJ_EXT) doio$(OBJ_EXT) regexec$(OBJ_EXT) taint$(OBJ_EXT) deb$(OBJ_EXT) globals$(OBJ_EXT)
  
obj = $(obj1) $(obj2) $(obj3) $(ARCHOBJS)

# Once perl has been Configure'd and built ok you build different
# perl variants (Debugging, Embedded, Multiplicity etc) by saying:
#	make clean; make perllib=libperl<type>.a
# where <type> is some combination of 'd' and(or) 'e' or 'm'.
# See cflags to understand how this works.
#
# Eventually some form of 'make-a-perl' script will automate this
# together with linking a perl executable with any desired
# static modules.
perllib = libperl$(PLIBSUF)

lintflags = -hbvxac

# grrr
SHELL = /bin/sh

.c$(OBJ_EXT):
	$(CCCMD) $(PLDLFLAGS) $*.c

all: makefile miniperl $(private) $(plextract) $(public) $(dynamic_ext)
	@echo " "; echo "	Everything is up to date."

translators:	miniperl lib/Config.pm FORCE
	@echo " "; echo "	Making x2p stuff"; cd x2p; $(MAKE) all

utilities:	miniperl lib/Config.pm FORCE
	@echo " "; echo "	Making utilities"; cd utils; $(MAKE) all


# This is now done by installman only if you actually want the man pages.
#	@echo " "; echo "	Making docs"; cd pod; $(MAKE) all;

# Phony target to force checking subdirectories.
# Apparently some makes require an action for the FORCE target.
FORCE:
	@sh -c true

# The $& notation tells Sequent machines that it can do a parallel make,
# and is harmless otherwise.
# The miniperl -w -MExporter line is a basic cheap test to catch errors
# before make goes on to run preplibrary and then MakeMaker on extensions.
# This is very handy because later errors are often caused by miniperl
# build problems but that's not obvious to the novice.
# The Module used here must not depend on Config or any extensions.

miniperl: $& miniperlmain$(OBJ_EXT) $(perllib)
	$(CC) $(LARGE) $(CLDFLAGS) -o miniperl miniperlmain$(OBJ_EXT) $(perllib) $(libs)
	@./miniperl -w -Ilib -MExporter -e 0 || $(MAKE) minitest

miniperlmain$(OBJ_EXT): miniperlmain.c
	$(CCCMD) $(PLDLFLAGS) $*.c

perlmain.c: miniperlmain.c config.sh makefile $(static_ext_autoinit)
	sh writemain $(DYNALOADER) $(static_ext) > tmp
	sh mv-if-diff tmp perlmain.c

perlmain$(OBJ_EXT): perlmain.c
	$(CCCMD) $(PLDLFLAGS) $*.c

# The file ext.libs is a list of libraries that must be linked in
# for static extensions, e.g. -lm -lgdbm, etc.  The individual
# static extension Makefile's add to it.
ext.libs: $(static_ext)
	-@test -f ext.libs || touch ext.libs

perl: $& perlmain$(OBJ_EXT) $(perllib) $(DYNALOADER) $(static_ext) ext.libs
	$(SHRPENV) $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o perl perlmain$(OBJ_EXT) $(perllib) $(DYNALOADER) $(static_ext) `cat ext.libs` $(libs)

pureperl: $& perlmain$(OBJ_EXT) $(perllib) $(DYNALOADER) $(static_ext) ext.libs
	purify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o pureperl perlmain$(OBJ_EXT) $(perllib) $(DYNALOADER) $(static_ext) `cat ext.libs` $(libs)

quantperl: $& perlmain$(OBJ_EXT) $(perllib) $(DYNALOADER) $(static_ext) ext.libs
	quantify $(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o quantperl perlmain$(OBJ_EXT) $(perllib) $(DYNALOADER) $(static_ext) `cat ext.libs` $(libs)

$(perllib): $& perl$(OBJ_EXT) $(obj)
	rm -f $(perllib)
	$(AR) rcu $(perllib) perl$(OBJ_EXT) $(obj)
	@$(ranlib) $(perllib)

# This version, if specified in Configure, does ONLY those scripts which need
# set-id emulation.  Suidperl must be setuid root.  It contains the "taint"
# checks as well as the special code to validate that the script in question
# has been invoked correctly.

suidperl: $& sperl$(OBJ_EXT) perlmain$(OBJ_EXT) $(perllib) $(DYNALOADER) $(static_ext) ext.libs
	$(CC) $(LARGE) $(CLDFLAGS) $(CCDLFLAGS) -o suidperl perlmain$(OBJ_EXT) sperl$(OBJ_EXT) $(perllib) $(DYNALOADER) $(static_ext) `cat ext.libs` $(libs)

sperl$(OBJ_EXT): perl.c perly.h patchlevel.h $(h)
	$(RMS) sperl.c
	$(LNS) perl.c sperl.c
	$(CCCMD) -DIAMSUID sperl.c
	$(RMS) sperl.c

# We have to call our ./makedir because Ultrix 4.3 make can't handle the line
#	test -d lib/auto || mkdir lib/auto
#
preplibrary: miniperl lib/Config.pm $(plextract)
	@sh ./makedir lib/auto
	@echo "	AutoSplitting perl library"
	@./miniperl -Ilib -e 'use AutoSplit; \
		autosplit_lib_modules(@ARGV)' lib/*.pm lib/*/*.pm

# Take care to avoid modifying lib/Config.pm without reason
lib/Config.pm: config.sh miniperl
	./miniperl configpm tmp
	sh mv-if-diff tmp lib/Config.pm

lib/ExtUtils/Miniperl.pm: miniperlmain.c miniperl minimod.pl lib/Config.pm
	./miniperl minimod.pl > tmp && mv tmp $@

$(plextract):	miniperl lib/Config.pm
	./miniperl -Ilib $@.PL

install: all install.perl install.man

install.perl:	all installperl
	./perl installperl

install.man:	all installman
	./perl installman

# Not implemented yet.
#install.html:	all installhtml
#	./perl installhtml

# I now supply perly.c with the kits, so the following section is
# used only if you force byacc to run by saying
# 	make run_byacc
# Since we patch up the byacc output, the perly.fixer script needs
# to run with precisely the same version of byacc as I use.  You
# normally shouldn't remake perly.[ch].

run_byacc:	FORCE
	@ echo 'Expect' 130 shift/reduce and 1 reduce/reduce conflict
	$(BYACC) -d perly.y
	sh $(shellflags) ./perly.fixer y.tab.c perly.c
	mv y.tab.h perly.h
	echo 'extern YYSTYPE yylval;' >>perly.h
	- perl vms/vms_yfix.pl perly.c perly.h vms/perly_c.vms vms/perly_h.vms

# We don't want to regenerate perly.c and perly.h, but they might
# appear out-of-date after a patch is applied or a new distribution is
# made.
perly.c: perly.y
	-@sh -c true

perly.h: perly.y
	-@sh -c true

# The following three header files are generated automatically
#	keywords.h:	keywords.pl
#	opcode.h:	opcode.pl
#	embed.h:  	embed.pl global.sym interp.sym
# The correct versions should be already supplied with the perl kit,
# in case you don't have perl available.
# To force them to run, type
#	make regen_headers
regen_headers:	FORCE
	perl keywords.pl
	perl opcode.pl
	perl embed.pl

# Extensions:
# Names added to $(dynamic_ext) or $(static_ext) will automatically
# get built.  There should ordinarily be no need to change any of
# this part of makefile.
#
# The dummy dependency is a place holder in case $(dynamic_ext) or
# $(static_ext) is empty.
#
# DynaLoader may be needed for extensions that use Makefile.PL.

$(DYNALOADER):	miniperl preplibrary FORCE
	@sh ext/util/make_ext static $@ LIBPERL_A=$(perllib)

d_dummy $(dynamic_ext):	miniperl preplibrary $(DYNALOADER) FORCE
	@sh ext/util/make_ext dynamic $@ LIBPERL_A=$(perllib)

s_dummy $(static_ext):	miniperl preplibrary $(DYNALOADER) FORCE
	@sh ext/util/make_ext static $@ LIBPERL_A=$(perllib)

clean:
	rm -f *$(OBJ_EXT) *$(LIB_EXT) all perlmain.c
	rm -f perl.exp ext.libs
	-rm perl.export perl.dll perl.libexp perl.map perl.def
	-cd pod; $(MAKE) clean
	-cd utils; $(MAKE) clean
	-cd x2p; $(MAKE) clean
	-@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) ; do \
	sh ext/util/make_ext clean $$x ; \
	done
	rm -f perl suidperl miniperl $(perllib)

realclean: clean
	-cd os2; rm -f Makefile
	-cd pod; $(MAKE) realclean
	-cd utils; $(MAKE) realclean
	-cd x2p; $(MAKE) realclean
	-@for x in $(DYNALOADER) $(dynamic_ext) $(static_ext) ; do \
	sh ext/util/make_ext realclean $$x ; \
	done
	rm -f *.orig */*.orig *~ */*~ core t/core t/c t/perl
	rm -rf $(addedbyconf)
	rm -f $(FIRSTMAKEFILE) $(FIRSTMAKEFILE).old
	rm -f $(private)
	rm -rf lib/auto
	rm -f lib/.exists
	rm -f h2ph.man pstruct
	rm -rf .config
	@echo "Note that make realclean does not delete config.sh"

clobber:	realclean
	rm -f config.sh cppstdin

distclean:	clobber

# The following lint has practically everything turned on.  Unfortunately,
# you have to wade through a lot of mumbo jumbo that can't be suppressed.
# If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message
# for that spot.

lint: perly.c $(c)
	lint $(lintflags) $(defs) perly.c $(c) > perl.fuzz

# Need to unset during recursion to go out of loop

MAKEDEPEND = makedepend

$(FIRSTMAKEFILE):	Makefile $(MAKEDEPEND)
	$(MAKE) depend MAKEDEPEND=

config.h: config.sh
	/bin/sh config_h.SH

# When done, touch perlmain.c so that it doesn't get remade each time.
depend: makedepend
	sh ./makedepend
	- test -s perlmain.c && touch perlmain.c
	cd x2p; $(MAKE) depend

# Cannot postpone this until $firstmakefile is ready ;-)
makedepend: makedepend.SH config.sh
	sh ./makedepend.SH

test: miniperl perl preplibrary $(dynamic_ext)
	- cd t && chmod +x TEST */*.t
	- cd t && (rm -f perl$(EXE_EXT); $(LNS) ../perl$(EXE_EXT) perl$(EXE_EXT)) && ./perl TEST </dev/tty

minitest: miniperl
	- cd t && chmod +x TEST */*.t
	- cd t && (rm -f perl$(EXE_EXT); $(LNS) ../miniperl$(EXE_EXT) perl$(EXE_EXT)) \
		&& ./perl TEST base/*.t comp/*.t cmd/*.t io/*.t op/*.t </dev/tty

clist:	$(c)
	echo $(c) | tr ' ' '\012' >.clist

hlist:  $(h)
	echo $(h) | tr ' ' '\012' >.hlist

shlist: $(sh)
	echo $(sh) | tr ' ' '\012' >.shlist

pllist: $(pl)
	echo $(pl) | tr ' ' '\012' >.pllist

# AUTOMATICALLY GENERATED MAKE DEPENDENCIES--PUT NOTHING BELOW THIS LINE
# If this runs make out of memory, delete /usr/include lines.
av$(OBJ_EXT): 
av$(OBJ_EXT): /usr/include/_G_config.h
av$(OBJ_EXT): /usr/include/alloca.h
av$(OBJ_EXT): /usr/include/asm/errno.h
av$(OBJ_EXT): /usr/include/asm/ioctl.h
av$(OBJ_EXT): /usr/include/asm/ioctls.h
av$(OBJ_EXT): /usr/include/asm/param.h
av$(OBJ_EXT): /usr/include/asm/sigcontext.h
av$(OBJ_EXT): /usr/include/asm/socket.h
av$(OBJ_EXT): /usr/include/asm/sockios.h
av$(OBJ_EXT): /usr/include/bits/byteswap.h
av$(OBJ_EXT): /usr/include/bits/dirent.h
av$(OBJ_EXT): /usr/include/bits/endian.h
av$(OBJ_EXT): /usr/include/bits/errno.h
av$(OBJ_EXT): /usr/include/bits/huge_val.h
av$(OBJ_EXT): /usr/include/bits/in.h
av$(OBJ_EXT): /usr/include/bits/ioctl-types.h
av$(OBJ_EXT): /usr/include/bits/ioctls.h
av$(OBJ_EXT): /usr/include/bits/local_lim.h
av$(OBJ_EXT): /usr/include/bits/mathcalls.h
av$(OBJ_EXT): /usr/include/bits/mathdef.h
av$(OBJ_EXT): /usr/include/bits/posix1_lim.h
av$(OBJ_EXT): /usr/include/bits/posix2_lim.h
av$(OBJ_EXT): /usr/include/bits/select.h
av$(OBJ_EXT): /usr/include/bits/setjmp.h
av$(OBJ_EXT): /usr/include/bits/sigaction.h
av$(OBJ_EXT): /usr/include/bits/sigcontext.h
av$(OBJ_EXT): /usr/include/bits/siginfo.h
av$(OBJ_EXT): /usr/include/bits/signum.h
av$(OBJ_EXT): /usr/include/bits/sigset.h
av$(OBJ_EXT): /usr/include/bits/sigstack.h
av$(OBJ_EXT): /usr/include/bits/sockaddr.h
av$(OBJ_EXT): /usr/include/bits/socket.h
av$(OBJ_EXT): /usr/include/bits/stat.h
av$(OBJ_EXT): /usr/include/bits/stdio_lim.h
av$(OBJ_EXT): /usr/include/bits/time.h
av$(OBJ_EXT): /usr/include/bits/types.h
av$(OBJ_EXT): /usr/include/bits/wordsize.h
av$(OBJ_EXT): /usr/include/ctype.h
av$(OBJ_EXT): /usr/include/dirent.h
av$(OBJ_EXT): /usr/include/endian.h
av$(OBJ_EXT): /usr/include/errno.h
av$(OBJ_EXT): /usr/include/features.h
av$(OBJ_EXT): /usr/include/gnu/stubs.h
av$(OBJ_EXT): /usr/include/libio.h
av$(OBJ_EXT): /usr/include/limits.h
av$(OBJ_EXT): /usr/include/linux/errno.h
av$(OBJ_EXT): /usr/include/linux/limits.h
av$(OBJ_EXT): /usr/include/linux/param.h
av$(OBJ_EXT): /usr/include/locale.h
av$(OBJ_EXT): /usr/include/math.h
av$(OBJ_EXT): /usr/include/netinet/in.h
av$(OBJ_EXT): /usr/include/setjmp.h
av$(OBJ_EXT): /usr/include/signal.h
av$(OBJ_EXT): /usr/include/stdint.h
av$(OBJ_EXT): /usr/include/stdio.h
av$(OBJ_EXT): /usr/include/stdlib.h
av$(OBJ_EXT): /usr/include/string.h
av$(OBJ_EXT): /usr/include/sys/cdefs.h
av$(OBJ_EXT): /usr/include/sys/ioctl.h
av$(OBJ_EXT): /usr/include/sys/param.h
av$(OBJ_EXT): /usr/include/sys/select.h
av$(OBJ_EXT): /usr/include/sys/stat.h
av$(OBJ_EXT): /usr/include/sys/sysmacros.h
av$(OBJ_EXT): /usr/include/sys/time.h
av$(OBJ_EXT): /usr/include/sys/times.h
av$(OBJ_EXT): /usr/include/sys/ttydefaults.h
av$(OBJ_EXT): /usr/include/sys/types.h
av$(OBJ_EXT): /usr/include/time.h
av$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
av$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
av$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
av$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
av$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
av$(OBJ_EXT): EXTERN.h
av$(OBJ_EXT): av.c
av$(OBJ_EXT): av.h
av$(OBJ_EXT): config.h
av$(OBJ_EXT): cop.h
av$(OBJ_EXT): cv.h
av$(OBJ_EXT): embed.h
av$(OBJ_EXT): form.h
av$(OBJ_EXT): gv.h
av$(OBJ_EXT): handy.h
av$(OBJ_EXT): hv.h
av$(OBJ_EXT): mg.h
av$(OBJ_EXT): op.h
av$(OBJ_EXT): opcode.h
av$(OBJ_EXT): perl.h
av$(OBJ_EXT): perly.h
av$(OBJ_EXT): pp.h
av$(OBJ_EXT): proto.h
av$(OBJ_EXT): regexp.h
av$(OBJ_EXT): scope.h
av$(OBJ_EXT): sv.h
av$(OBJ_EXT): unixish.h
av$(OBJ_EXT): util.h
scope$(OBJ_EXT): 
scope$(OBJ_EXT): /usr/include/_G_config.h
scope$(OBJ_EXT): /usr/include/alloca.h
scope$(OBJ_EXT): /usr/include/asm/errno.h
scope$(OBJ_EXT): /usr/include/asm/ioctl.h
scope$(OBJ_EXT): /usr/include/asm/ioctls.h
scope$(OBJ_EXT): /usr/include/asm/param.h
scope$(OBJ_EXT): /usr/include/asm/sigcontext.h
scope$(OBJ_EXT): /usr/include/asm/socket.h
scope$(OBJ_EXT): /usr/include/asm/sockios.h
scope$(OBJ_EXT): /usr/include/bits/byteswap.h
scope$(OBJ_EXT): /usr/include/bits/dirent.h
scope$(OBJ_EXT): /usr/include/bits/endian.h
scope$(OBJ_EXT): /usr/include/bits/errno.h
scope$(OBJ_EXT): /usr/include/bits/huge_val.h
scope$(OBJ_EXT): /usr/include/bits/in.h
scope$(OBJ_EXT): /usr/include/bits/ioctl-types.h
scope$(OBJ_EXT): /usr/include/bits/ioctls.h
scope$(OBJ_EXT): /usr/include/bits/local_lim.h
scope$(OBJ_EXT): /usr/include/bits/mathcalls.h
scope$(OBJ_EXT): /usr/include/bits/mathdef.h
scope$(OBJ_EXT): /usr/include/bits/posix1_lim.h
scope$(OBJ_EXT): /usr/include/bits/posix2_lim.h
scope$(OBJ_EXT): /usr/include/bits/select.h
scope$(OBJ_EXT): /usr/include/bits/setjmp.h
scope$(OBJ_EXT): /usr/include/bits/sigaction.h
scope$(OBJ_EXT): /usr/include/bits/sigcontext.h
scope$(OBJ_EXT): /usr/include/bits/siginfo.h
scope$(OBJ_EXT): /usr/include/bits/signum.h
scope$(OBJ_EXT): /usr/include/bits/sigset.h
scope$(OBJ_EXT): /usr/include/bits/sigstack.h
scope$(OBJ_EXT): /usr/include/bits/sockaddr.h
scope$(OBJ_EXT): /usr/include/bits/socket.h
scope$(OBJ_EXT): /usr/include/bits/stat.h
scope$(OBJ_EXT): /usr/include/bits/stdio_lim.h
scope$(OBJ_EXT): /usr/include/bits/time.h
scope$(OBJ_EXT): /usr/include/bits/types.h
scope$(OBJ_EXT): /usr/include/bits/wordsize.h
scope$(OBJ_EXT): /usr/include/ctype.h
scope$(OBJ_EXT): /usr/include/dirent.h
scope$(OBJ_EXT): /usr/include/endian.h
scope$(OBJ_EXT): /usr/include/errno.h
scope$(OBJ_EXT): /usr/include/features.h
scope$(OBJ_EXT): /usr/include/gnu/stubs.h
scope$(OBJ_EXT): /usr/include/libio.h
scope$(OBJ_EXT): /usr/include/limits.h
scope$(OBJ_EXT): /usr/include/linux/errno.h
scope$(OBJ_EXT): /usr/include/linux/limits.h
scope$(OBJ_EXT): /usr/include/linux/param.h
scope$(OBJ_EXT): /usr/include/locale.h
scope$(OBJ_EXT): /usr/include/math.h
scope$(OBJ_EXT): /usr/include/netinet/in.h
scope$(OBJ_EXT): /usr/include/setjmp.h
scope$(OBJ_EXT): /usr/include/signal.h
scope$(OBJ_EXT): /usr/include/stdint.h
scope$(OBJ_EXT): /usr/include/stdio.h
scope$(OBJ_EXT): /usr/include/stdlib.h
scope$(OBJ_EXT): /usr/include/string.h
scope$(OBJ_EXT): /usr/include/sys/cdefs.h
scope$(OBJ_EXT): /usr/include/sys/ioctl.h
scope$(OBJ_EXT): /usr/include/sys/param.h
scope$(OBJ_EXT): /usr/include/sys/select.h
scope$(OBJ_EXT): /usr/include/sys/stat.h
scope$(OBJ_EXT): /usr/include/sys/sysmacros.h
scope$(OBJ_EXT): /usr/include/sys/time.h
scope$(OBJ_EXT): /usr/include/sys/times.h
scope$(OBJ_EXT): /usr/include/sys/ttydefaults.h
scope$(OBJ_EXT): /usr/include/sys/types.h
scope$(OBJ_EXT): /usr/include/time.h
scope$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
scope$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
scope$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
scope$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
scope$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
scope$(OBJ_EXT): EXTERN.h
scope$(OBJ_EXT): av.h
scope$(OBJ_EXT): config.h
scope$(OBJ_EXT): cop.h
scope$(OBJ_EXT): cv.h
scope$(OBJ_EXT): embed.h
scope$(OBJ_EXT): form.h
scope$(OBJ_EXT): gv.h
scope$(OBJ_EXT): handy.h
scope$(OBJ_EXT): hv.h
scope$(OBJ_EXT): mg.h
scope$(OBJ_EXT): op.h
scope$(OBJ_EXT): opcode.h
scope$(OBJ_EXT): perl.h
scope$(OBJ_EXT): perly.h
scope$(OBJ_EXT): pp.h
scope$(OBJ_EXT): proto.h
scope$(OBJ_EXT): regexp.h
scope$(OBJ_EXT): scope.c
scope$(OBJ_EXT): scope.h
scope$(OBJ_EXT): sv.h
scope$(OBJ_EXT): unixish.h
scope$(OBJ_EXT): util.h
op$(OBJ_EXT): 
op$(OBJ_EXT): /usr/include/_G_config.h
op$(OBJ_EXT): /usr/include/alloca.h
op$(OBJ_EXT): /usr/include/asm/errno.h
op$(OBJ_EXT): /usr/include/asm/ioctl.h
op$(OBJ_EXT): /usr/include/asm/ioctls.h
op$(OBJ_EXT): /usr/include/asm/param.h
op$(OBJ_EXT): /usr/include/asm/sigcontext.h
op$(OBJ_EXT): /usr/include/asm/socket.h
op$(OBJ_EXT): /usr/include/asm/sockios.h
op$(OBJ_EXT): /usr/include/bits/byteswap.h
op$(OBJ_EXT): /usr/include/bits/dirent.h
op$(OBJ_EXT): /usr/include/bits/endian.h
op$(OBJ_EXT): /usr/include/bits/errno.h
op$(OBJ_EXT): /usr/include/bits/huge_val.h
op$(OBJ_EXT): /usr/include/bits/in.h
op$(OBJ_EXT): /usr/include/bits/ioctl-types.h
op$(OBJ_EXT): /usr/include/bits/ioctls.h
op$(OBJ_EXT): /usr/include/bits/local_lim.h
op$(OBJ_EXT): /usr/include/bits/mathcalls.h
op$(OBJ_EXT): /usr/include/bits/mathdef.h
op$(OBJ_EXT): /usr/include/bits/posix1_lim.h
op$(OBJ_EXT): /usr/include/bits/posix2_lim.h
op$(OBJ_EXT): /usr/include/bits/select.h
op$(OBJ_EXT): /usr/include/bits/setjmp.h
op$(OBJ_EXT): /usr/include/bits/sigaction.h
op$(OBJ_EXT): /usr/include/bits/sigcontext.h
op$(OBJ_EXT): /usr/include/bits/siginfo.h
op$(OBJ_EXT): /usr/include/bits/signum.h
op$(OBJ_EXT): /usr/include/bits/sigset.h
op$(OBJ_EXT): /usr/include/bits/sigstack.h
op$(OBJ_EXT): /usr/include/bits/sockaddr.h
op$(OBJ_EXT): /usr/include/bits/socket.h
op$(OBJ_EXT): /usr/include/bits/stat.h
op$(OBJ_EXT): /usr/include/bits/stdio_lim.h
op$(OBJ_EXT): /usr/include/bits/time.h
op$(OBJ_EXT): /usr/include/bits/types.h
op$(OBJ_EXT): /usr/include/bits/wordsize.h
op$(OBJ_EXT): /usr/include/ctype.h
op$(OBJ_EXT): /usr/include/dirent.h
op$(OBJ_EXT): /usr/include/endian.h
op$(OBJ_EXT): /usr/include/errno.h
op$(OBJ_EXT): /usr/include/features.h
op$(OBJ_EXT): /usr/include/gnu/stubs.h
op$(OBJ_EXT): /usr/include/libio.h
op$(OBJ_EXT): /usr/include/limits.h
op$(OBJ_EXT): /usr/include/linux/errno.h
op$(OBJ_EXT): /usr/include/linux/limits.h
op$(OBJ_EXT): /usr/include/linux/param.h
op$(OBJ_EXT): /usr/include/locale.h
op$(OBJ_EXT): /usr/include/math.h
op$(OBJ_EXT): /usr/include/netinet/in.h
op$(OBJ_EXT): /usr/include/setjmp.h
op$(OBJ_EXT): /usr/include/signal.h
op$(OBJ_EXT): /usr/include/stdint.h
op$(OBJ_EXT): /usr/include/stdio.h
op$(OBJ_EXT): /usr/include/stdlib.h
op$(OBJ_EXT): /usr/include/string.h
op$(OBJ_EXT): /usr/include/sys/cdefs.h
op$(OBJ_EXT): /usr/include/sys/ioctl.h
op$(OBJ_EXT): /usr/include/sys/param.h
op$(OBJ_EXT): /usr/include/sys/select.h
op$(OBJ_EXT): /usr/include/sys/stat.h
op$(OBJ_EXT): /usr/include/sys/sysmacros.h
op$(OBJ_EXT): /usr/include/sys/time.h
op$(OBJ_EXT): /usr/include/sys/times.h
op$(OBJ_EXT): /usr/include/sys/ttydefaults.h
op$(OBJ_EXT): /usr/include/sys/types.h
op$(OBJ_EXT): /usr/include/time.h
op$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
op$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
op$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
op$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
op$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
op$(OBJ_EXT): EXTERN.h
op$(OBJ_EXT): av.h
op$(OBJ_EXT): config.h
op$(OBJ_EXT): cop.h
op$(OBJ_EXT): cv.h
op$(OBJ_EXT): embed.h
op$(OBJ_EXT): form.h
op$(OBJ_EXT): gv.h
op$(OBJ_EXT): handy.h
op$(OBJ_EXT): hv.h
op$(OBJ_EXT): mg.h
op$(OBJ_EXT): op.c
op$(OBJ_EXT): op.h
op$(OBJ_EXT): opcode.h
op$(OBJ_EXT): perl.h
op$(OBJ_EXT): perly.h
op$(OBJ_EXT): pp.h
op$(OBJ_EXT): proto.h
op$(OBJ_EXT): regexp.h
op$(OBJ_EXT): scope.h
op$(OBJ_EXT): sv.h
op$(OBJ_EXT): unixish.h
op$(OBJ_EXT): util.h
doop$(OBJ_EXT): 
doop$(OBJ_EXT): /usr/include/_G_config.h
doop$(OBJ_EXT): /usr/include/alloca.h
doop$(OBJ_EXT): /usr/include/asm/errno.h
doop$(OBJ_EXT): /usr/include/asm/ioctl.h
doop$(OBJ_EXT): /usr/include/asm/ioctls.h
doop$(OBJ_EXT): /usr/include/asm/param.h
doop$(OBJ_EXT): /usr/include/asm/sigcontext.h
doop$(OBJ_EXT): /usr/include/asm/socket.h
doop$(OBJ_EXT): /usr/include/asm/sockios.h
doop$(OBJ_EXT): /usr/include/bits/byteswap.h
doop$(OBJ_EXT): /usr/include/bits/dirent.h
doop$(OBJ_EXT): /usr/include/bits/endian.h
doop$(OBJ_EXT): /usr/include/bits/errno.h
doop$(OBJ_EXT): /usr/include/bits/huge_val.h
doop$(OBJ_EXT): /usr/include/bits/in.h
doop$(OBJ_EXT): /usr/include/bits/ioctl-types.h
doop$(OBJ_EXT): /usr/include/bits/ioctls.h
doop$(OBJ_EXT): /usr/include/bits/local_lim.h
doop$(OBJ_EXT): /usr/include/bits/mathcalls.h
doop$(OBJ_EXT): /usr/include/bits/mathdef.h
doop$(OBJ_EXT): /usr/include/bits/posix1_lim.h
doop$(OBJ_EXT): /usr/include/bits/posix2_lim.h
doop$(OBJ_EXT): /usr/include/bits/select.h
doop$(OBJ_EXT): /usr/include/bits/setjmp.h
doop$(OBJ_EXT): /usr/include/bits/sigaction.h
doop$(OBJ_EXT): /usr/include/bits/sigcontext.h
doop$(OBJ_EXT): /usr/include/bits/siginfo.h
doop$(OBJ_EXT): /usr/include/bits/signum.h
doop$(OBJ_EXT): /usr/include/bits/sigset.h
doop$(OBJ_EXT): /usr/include/bits/sigstack.h
doop$(OBJ_EXT): /usr/include/bits/sockaddr.h
doop$(OBJ_EXT): /usr/include/bits/socket.h
doop$(OBJ_EXT): /usr/include/bits/stat.h
doop$(OBJ_EXT): /usr/include/bits/stdio_lim.h
doop$(OBJ_EXT): /usr/include/bits/time.h
doop$(OBJ_EXT): /usr/include/bits/types.h
doop$(OBJ_EXT): /usr/include/bits/wordsize.h
doop$(OBJ_EXT): /usr/include/ctype.h
doop$(OBJ_EXT): /usr/include/dirent.h
doop$(OBJ_EXT): /usr/include/endian.h
doop$(OBJ_EXT): /usr/include/errno.h
doop$(OBJ_EXT): /usr/include/features.h
doop$(OBJ_EXT): /usr/include/gnu/stubs.h
doop$(OBJ_EXT): /usr/include/libio.h
doop$(OBJ_EXT): /usr/include/limits.h
doop$(OBJ_EXT): /usr/include/linux/errno.h
doop$(OBJ_EXT): /usr/include/linux/limits.h
doop$(OBJ_EXT): /usr/include/linux/param.h
doop$(OBJ_EXT): /usr/include/locale.h
doop$(OBJ_EXT): /usr/include/math.h
doop$(OBJ_EXT): /usr/include/netinet/in.h
doop$(OBJ_EXT): /usr/include/setjmp.h
doop$(OBJ_EXT): /usr/include/signal.h
doop$(OBJ_EXT): /usr/include/stdint.h
doop$(OBJ_EXT): /usr/include/stdio.h
doop$(OBJ_EXT): /usr/include/stdlib.h
doop$(OBJ_EXT): /usr/include/string.h
doop$(OBJ_EXT): /usr/include/sys/cdefs.h
doop$(OBJ_EXT): /usr/include/sys/ioctl.h
doop$(OBJ_EXT): /usr/include/sys/param.h
doop$(OBJ_EXT): /usr/include/sys/select.h
doop$(OBJ_EXT): /usr/include/sys/stat.h
doop$(OBJ_EXT): /usr/include/sys/sysmacros.h
doop$(OBJ_EXT): /usr/include/sys/time.h
doop$(OBJ_EXT): /usr/include/sys/times.h
doop$(OBJ_EXT): /usr/include/sys/ttydefaults.h
doop$(OBJ_EXT): /usr/include/sys/types.h
doop$(OBJ_EXT): /usr/include/time.h
doop$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
doop$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
doop$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
doop$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
doop$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
doop$(OBJ_EXT): EXTERN.h
doop$(OBJ_EXT): av.h
doop$(OBJ_EXT): config.h
doop$(OBJ_EXT): cop.h
doop$(OBJ_EXT): cv.h
doop$(OBJ_EXT): doop.c
doop$(OBJ_EXT): embed.h
doop$(OBJ_EXT): form.h
doop$(OBJ_EXT): gv.h
doop$(OBJ_EXT): handy.h
doop$(OBJ_EXT): hv.h
doop$(OBJ_EXT): mg.h
doop$(OBJ_EXT): op.h
doop$(OBJ_EXT): opcode.h
doop$(OBJ_EXT): perl.h
doop$(OBJ_EXT): perly.h
doop$(OBJ_EXT): pp.h
doop$(OBJ_EXT): proto.h
doop$(OBJ_EXT): regexp.h
doop$(OBJ_EXT): scope.h
doop$(OBJ_EXT): sv.h
doop$(OBJ_EXT): unixish.h
doop$(OBJ_EXT): util.h
doio$(OBJ_EXT): 
doio$(OBJ_EXT): /usr/include/_G_config.h
doio$(OBJ_EXT): /usr/include/alloca.h
doio$(OBJ_EXT): /usr/include/asm/errno.h
doio$(OBJ_EXT): /usr/include/asm/ioctl.h
doio$(OBJ_EXT): /usr/include/asm/ioctls.h
doio$(OBJ_EXT): /usr/include/asm/param.h
doio$(OBJ_EXT): /usr/include/asm/sigcontext.h
doio$(OBJ_EXT): /usr/include/asm/socket.h
doio$(OBJ_EXT): /usr/include/asm/sockios.h
doio$(OBJ_EXT): /usr/include/bits/byteswap.h
doio$(OBJ_EXT): /usr/include/bits/confname.h
doio$(OBJ_EXT): /usr/include/bits/dirent.h
doio$(OBJ_EXT): /usr/include/bits/endian.h
doio$(OBJ_EXT): /usr/include/bits/errno.h
doio$(OBJ_EXT): /usr/include/bits/fcntl.h
doio$(OBJ_EXT): /usr/include/bits/huge_val.h
doio$(OBJ_EXT): /usr/include/bits/in.h
doio$(OBJ_EXT): /usr/include/bits/ioctl-types.h
doio$(OBJ_EXT): /usr/include/bits/ioctls.h
doio$(OBJ_EXT): /usr/include/bits/ipc.h
doio$(OBJ_EXT): /usr/include/bits/local_lim.h
doio$(OBJ_EXT): /usr/include/bits/mathcalls.h
doio$(OBJ_EXT): /usr/include/bits/mathdef.h
doio$(OBJ_EXT): /usr/include/bits/msq.h
doio$(OBJ_EXT): /usr/include/bits/posix1_lim.h
doio$(OBJ_EXT): /usr/include/bits/posix2_lim.h
doio$(OBJ_EXT): /usr/include/bits/posix_opt.h
doio$(OBJ_EXT): /usr/include/bits/select.h
doio$(OBJ_EXT): /usr/include/bits/sem.h
doio$(OBJ_EXT): /usr/include/bits/setjmp.h
doio$(OBJ_EXT): /usr/include/bits/shm.h
doio$(OBJ_EXT): /usr/include/bits/sigaction.h
doio$(OBJ_EXT): /usr/include/bits/sigcontext.h
doio$(OBJ_EXT): /usr/include/bits/siginfo.h
doio$(OBJ_EXT): /usr/include/bits/signum.h
doio$(OBJ_EXT): /usr/include/bits/sigset.h
doio$(OBJ_EXT): /usr/include/bits/sigstack.h
doio$(OBJ_EXT): /usr/include/bits/sockaddr.h
doio$(OBJ_EXT): /usr/include/bits/socket.h
doio$(OBJ_EXT): /usr/include/bits/stat.h
doio$(OBJ_EXT): /usr/include/bits/stdio_lim.h
doio$(OBJ_EXT): /usr/include/bits/time.h
doio$(OBJ_EXT): /usr/include/bits/types.h
doio$(OBJ_EXT): /usr/include/bits/wordsize.h
doio$(OBJ_EXT): /usr/include/ctype.h
doio$(OBJ_EXT): /usr/include/dirent.h
doio$(OBJ_EXT): /usr/include/endian.h
doio$(OBJ_EXT): /usr/include/errno.h
doio$(OBJ_EXT): /usr/include/fcntl.h
doio$(OBJ_EXT): /usr/include/features.h
doio$(OBJ_EXT): /usr/include/getopt.h
doio$(OBJ_EXT): /usr/include/gnu/stubs.h
doio$(OBJ_EXT): /usr/include/libio.h
doio$(OBJ_EXT): /usr/include/limits.h
doio$(OBJ_EXT): /usr/include/linux/errno.h
doio$(OBJ_EXT): /usr/include/linux/limits.h
doio$(OBJ_EXT): /usr/include/linux/param.h
doio$(OBJ_EXT): /usr/include/locale.h
doio$(OBJ_EXT): /usr/include/math.h
doio$(OBJ_EXT): /usr/include/netdb.h
doio$(OBJ_EXT): /usr/include/netinet/in.h
doio$(OBJ_EXT): /usr/include/rpc/netdb.h
doio$(OBJ_EXT): /usr/include/setjmp.h
doio$(OBJ_EXT): /usr/include/signal.h
doio$(OBJ_EXT): /usr/include/stdint.h
doio$(OBJ_EXT): /usr/include/stdio.h
doio$(OBJ_EXT): /usr/include/stdlib.h
doio$(OBJ_EXT): /usr/include/string.h
doio$(OBJ_EXT): /usr/include/sys/cdefs.h
doio$(OBJ_EXT): /usr/include/sys/file.h
doio$(OBJ_EXT): /usr/include/sys/ioctl.h
doio$(OBJ_EXT): /usr/include/sys/ipc.h
doio$(OBJ_EXT): /usr/include/sys/msg.h
doio$(OBJ_EXT): /usr/include/sys/param.h
doio$(OBJ_EXT): /usr/include/sys/select.h
doio$(OBJ_EXT): /usr/include/sys/sem.h
doio$(OBJ_EXT): /usr/include/sys/shm.h
doio$(OBJ_EXT): /usr/include/sys/socket.h
doio$(OBJ_EXT): /usr/include/sys/stat.h
doio$(OBJ_EXT): /usr/include/sys/sysmacros.h
doio$(OBJ_EXT): /usr/include/sys/time.h
doio$(OBJ_EXT): /usr/include/sys/times.h
doio$(OBJ_EXT): /usr/include/sys/ttydefaults.h
doio$(OBJ_EXT): /usr/include/sys/types.h
doio$(OBJ_EXT): /usr/include/time.h
doio$(OBJ_EXT): /usr/include/unistd.h
doio$(OBJ_EXT): /usr/include/utime.h
doio$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
doio$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
doio$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
doio$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
doio$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
doio$(OBJ_EXT): EXTERN.h
doio$(OBJ_EXT): av.h
doio$(OBJ_EXT): config.h
doio$(OBJ_EXT): cop.h
doio$(OBJ_EXT): cv.h
doio$(OBJ_EXT): doio.c
doio$(OBJ_EXT): embed.h
doio$(OBJ_EXT): form.h
doio$(OBJ_EXT): gv.h
doio$(OBJ_EXT): handy.h
doio$(OBJ_EXT): hv.h
doio$(OBJ_EXT): mg.h
doio$(OBJ_EXT): op.h
doio$(OBJ_EXT): opcode.h
doio$(OBJ_EXT): perl.h
doio$(OBJ_EXT): perly.h
doio$(OBJ_EXT): pp.h
doio$(OBJ_EXT): proto.h
doio$(OBJ_EXT): regexp.h
doio$(OBJ_EXT): scope.h
doio$(OBJ_EXT): sv.h
doio$(OBJ_EXT): unixish.h
doio$(OBJ_EXT): util.h
dump$(OBJ_EXT): 
dump$(OBJ_EXT): /usr/include/_G_config.h
dump$(OBJ_EXT): /usr/include/alloca.h
dump$(OBJ_EXT): /usr/include/asm/errno.h
dump$(OBJ_EXT): /usr/include/asm/ioctl.h
dump$(OBJ_EXT): /usr/include/asm/ioctls.h
dump$(OBJ_EXT): /usr/include/asm/param.h
dump$(OBJ_EXT): /usr/include/asm/sigcontext.h
dump$(OBJ_EXT): /usr/include/asm/socket.h
dump$(OBJ_EXT): /usr/include/asm/sockios.h
dump$(OBJ_EXT): /usr/include/bits/byteswap.h
dump$(OBJ_EXT): /usr/include/bits/dirent.h
dump$(OBJ_EXT): /usr/include/bits/endian.h
dump$(OBJ_EXT): /usr/include/bits/errno.h
dump$(OBJ_EXT): /usr/include/bits/huge_val.h
dump$(OBJ_EXT): /usr/include/bits/in.h
dump$(OBJ_EXT): /usr/include/bits/ioctl-types.h
dump$(OBJ_EXT): /usr/include/bits/ioctls.h
dump$(OBJ_EXT): /usr/include/bits/local_lim.h
dump$(OBJ_EXT): /usr/include/bits/mathcalls.h
dump$(OBJ_EXT): /usr/include/bits/mathdef.h
dump$(OBJ_EXT): /usr/include/bits/posix1_lim.h
dump$(OBJ_EXT): /usr/include/bits/posix2_lim.h
dump$(OBJ_EXT): /usr/include/bits/select.h
dump$(OBJ_EXT): /usr/include/bits/setjmp.h
dump$(OBJ_EXT): /usr/include/bits/sigaction.h
dump$(OBJ_EXT): /usr/include/bits/sigcontext.h
dump$(OBJ_EXT): /usr/include/bits/siginfo.h
dump$(OBJ_EXT): /usr/include/bits/signum.h
dump$(OBJ_EXT): /usr/include/bits/sigset.h
dump$(OBJ_EXT): /usr/include/bits/sigstack.h
dump$(OBJ_EXT): /usr/include/bits/sockaddr.h
dump$(OBJ_EXT): /usr/include/bits/socket.h
dump$(OBJ_EXT): /usr/include/bits/stat.h
dump$(OBJ_EXT): /usr/include/bits/stdio_lim.h
dump$(OBJ_EXT): /usr/include/bits/time.h
dump$(OBJ_EXT): /usr/include/bits/types.h
dump$(OBJ_EXT): /usr/include/bits/wordsize.h
dump$(OBJ_EXT): /usr/include/ctype.h
dump$(OBJ_EXT): /usr/include/dirent.h
dump$(OBJ_EXT): /usr/include/endian.h
dump$(OBJ_EXT): /usr/include/errno.h
dump$(OBJ_EXT): /usr/include/features.h
dump$(OBJ_EXT): /usr/include/gnu/stubs.h
dump$(OBJ_EXT): /usr/include/libio.h
dump$(OBJ_EXT): /usr/include/limits.h
dump$(OBJ_EXT): /usr/include/linux/errno.h
dump$(OBJ_EXT): /usr/include/linux/limits.h
dump$(OBJ_EXT): /usr/include/linux/param.h
dump$(OBJ_EXT): /usr/include/locale.h
dump$(OBJ_EXT): /usr/include/math.h
dump$(OBJ_EXT): /usr/include/netinet/in.h
dump$(OBJ_EXT): /usr/include/setjmp.h
dump$(OBJ_EXT): /usr/include/signal.h
dump$(OBJ_EXT): /usr/include/stdint.h
dump$(OBJ_EXT): /usr/include/stdio.h
dump$(OBJ_EXT): /usr/include/stdlib.h
dump$(OBJ_EXT): /usr/include/string.h
dump$(OBJ_EXT): /usr/include/sys/cdefs.h
dump$(OBJ_EXT): /usr/include/sys/ioctl.h
dump$(OBJ_EXT): /usr/include/sys/param.h
dump$(OBJ_EXT): /usr/include/sys/select.h
dump$(OBJ_EXT): /usr/include/sys/stat.h
dump$(OBJ_EXT): /usr/include/sys/sysmacros.h
dump$(OBJ_EXT): /usr/include/sys/time.h
dump$(OBJ_EXT): /usr/include/sys/times.h
dump$(OBJ_EXT): /usr/include/sys/ttydefaults.h
dump$(OBJ_EXT): /usr/include/sys/types.h
dump$(OBJ_EXT): /usr/include/time.h
dump$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
dump$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
dump$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
dump$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
dump$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
dump$(OBJ_EXT): EXTERN.h
dump$(OBJ_EXT): av.h
dump$(OBJ_EXT): config.h
dump$(OBJ_EXT): cop.h
dump$(OBJ_EXT): cv.h
dump$(OBJ_EXT): dump.c
dump$(OBJ_EXT): embed.h
dump$(OBJ_EXT): form.h
dump$(OBJ_EXT): gv.h
dump$(OBJ_EXT): handy.h
dump$(OBJ_EXT): hv.h
dump$(OBJ_EXT): mg.h
dump$(OBJ_EXT): op.h
dump$(OBJ_EXT): opcode.h
dump$(OBJ_EXT): perl.h
dump$(OBJ_EXT): perly.h
dump$(OBJ_EXT): pp.h
dump$(OBJ_EXT): proto.h
dump$(OBJ_EXT): regexp.h
dump$(OBJ_EXT): scope.h
dump$(OBJ_EXT): sv.h
dump$(OBJ_EXT): unixish.h
dump$(OBJ_EXT): util.h
hv$(OBJ_EXT): 
hv$(OBJ_EXT): /usr/include/_G_config.h
hv$(OBJ_EXT): /usr/include/alloca.h
hv$(OBJ_EXT): /usr/include/asm/errno.h
hv$(OBJ_EXT): /usr/include/asm/ioctl.h
hv$(OBJ_EXT): /usr/include/asm/ioctls.h
hv$(OBJ_EXT): /usr/include/asm/param.h
hv$(OBJ_EXT): /usr/include/asm/sigcontext.h
hv$(OBJ_EXT): /usr/include/asm/socket.h
hv$(OBJ_EXT): /usr/include/asm/sockios.h
hv$(OBJ_EXT): /usr/include/bits/byteswap.h
hv$(OBJ_EXT): /usr/include/bits/dirent.h
hv$(OBJ_EXT): /usr/include/bits/endian.h
hv$(OBJ_EXT): /usr/include/bits/errno.h
hv$(OBJ_EXT): /usr/include/bits/huge_val.h
hv$(OBJ_EXT): /usr/include/bits/in.h
hv$(OBJ_EXT): /usr/include/bits/ioctl-types.h
hv$(OBJ_EXT): /usr/include/bits/ioctls.h
hv$(OBJ_EXT): /usr/include/bits/local_lim.h
hv$(OBJ_EXT): /usr/include/bits/mathcalls.h
hv$(OBJ_EXT): /usr/include/bits/mathdef.h
hv$(OBJ_EXT): /usr/include/bits/posix1_lim.h
hv$(OBJ_EXT): /usr/include/bits/posix2_lim.h
hv$(OBJ_EXT): /usr/include/bits/select.h
hv$(OBJ_EXT): /usr/include/bits/setjmp.h
hv$(OBJ_EXT): /usr/include/bits/sigaction.h
hv$(OBJ_EXT): /usr/include/bits/sigcontext.h
hv$(OBJ_EXT): /usr/include/bits/siginfo.h
hv$(OBJ_EXT): /usr/include/bits/signum.h
hv$(OBJ_EXT): /usr/include/bits/sigset.h
hv$(OBJ_EXT): /usr/include/bits/sigstack.h
hv$(OBJ_EXT): /usr/include/bits/sockaddr.h
hv$(OBJ_EXT): /usr/include/bits/socket.h
hv$(OBJ_EXT): /usr/include/bits/stat.h
hv$(OBJ_EXT): /usr/include/bits/stdio_lim.h
hv$(OBJ_EXT): /usr/include/bits/time.h
hv$(OBJ_EXT): /usr/include/bits/types.h
hv$(OBJ_EXT): /usr/include/bits/wordsize.h
hv$(OBJ_EXT): /usr/include/ctype.h
hv$(OBJ_EXT): /usr/include/dirent.h
hv$(OBJ_EXT): /usr/include/endian.h
hv$(OBJ_EXT): /usr/include/errno.h
hv$(OBJ_EXT): /usr/include/features.h
hv$(OBJ_EXT): /usr/include/gnu/stubs.h
hv$(OBJ_EXT): /usr/include/libio.h
hv$(OBJ_EXT): /usr/include/limits.h
hv$(OBJ_EXT): /usr/include/linux/errno.h
hv$(OBJ_EXT): /usr/include/linux/limits.h
hv$(OBJ_EXT): /usr/include/linux/param.h
hv$(OBJ_EXT): /usr/include/locale.h
hv$(OBJ_EXT): /usr/include/math.h
hv$(OBJ_EXT): /usr/include/netinet/in.h
hv$(OBJ_EXT): /usr/include/setjmp.h
hv$(OBJ_EXT): /usr/include/signal.h
hv$(OBJ_EXT): /usr/include/stdint.h
hv$(OBJ_EXT): /usr/include/stdio.h
hv$(OBJ_EXT): /usr/include/stdlib.h
hv$(OBJ_EXT): /usr/include/string.h
hv$(OBJ_EXT): /usr/include/sys/cdefs.h
hv$(OBJ_EXT): /usr/include/sys/ioctl.h
hv$(OBJ_EXT): /usr/include/sys/param.h
hv$(OBJ_EXT): /usr/include/sys/select.h
hv$(OBJ_EXT): /usr/include/sys/stat.h
hv$(OBJ_EXT): /usr/include/sys/sysmacros.h
hv$(OBJ_EXT): /usr/include/sys/time.h
hv$(OBJ_EXT): /usr/include/sys/times.h
hv$(OBJ_EXT): /usr/include/sys/ttydefaults.h
hv$(OBJ_EXT): /usr/include/sys/types.h
hv$(OBJ_EXT): /usr/include/time.h
hv$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
hv$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
hv$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
hv$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
hv$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
hv$(OBJ_EXT): EXTERN.h
hv$(OBJ_EXT): av.h
hv$(OBJ_EXT): config.h
hv$(OBJ_EXT): cop.h
hv$(OBJ_EXT): cv.h
hv$(OBJ_EXT): embed.h
hv$(OBJ_EXT): form.h
hv$(OBJ_EXT): gv.h
hv$(OBJ_EXT): handy.h
hv$(OBJ_EXT): hv.c
hv$(OBJ_EXT): hv.h
hv$(OBJ_EXT): mg.h
hv$(OBJ_EXT): op.h
hv$(OBJ_EXT): opcode.h
hv$(OBJ_EXT): perl.h
hv$(OBJ_EXT): perly.h
hv$(OBJ_EXT): pp.h
hv$(OBJ_EXT): proto.h
hv$(OBJ_EXT): regexp.h
hv$(OBJ_EXT): scope.h
hv$(OBJ_EXT): sv.h
hv$(OBJ_EXT): unixish.h
hv$(OBJ_EXT): util.h
mg$(OBJ_EXT): 
mg$(OBJ_EXT): /usr/include/_G_config.h
mg$(OBJ_EXT): /usr/include/alloca.h
mg$(OBJ_EXT): /usr/include/asm/errno.h
mg$(OBJ_EXT): /usr/include/asm/ioctl.h
mg$(OBJ_EXT): /usr/include/asm/ioctls.h
mg$(OBJ_EXT): /usr/include/asm/param.h
mg$(OBJ_EXT): /usr/include/asm/sigcontext.h
mg$(OBJ_EXT): /usr/include/asm/socket.h
mg$(OBJ_EXT): /usr/include/asm/sockios.h
mg$(OBJ_EXT): /usr/include/bits/byteswap.h
mg$(OBJ_EXT): /usr/include/bits/confname.h
mg$(OBJ_EXT): /usr/include/bits/dirent.h
mg$(OBJ_EXT): /usr/include/bits/endian.h
mg$(OBJ_EXT): /usr/include/bits/errno.h
mg$(OBJ_EXT): /usr/include/bits/huge_val.h
mg$(OBJ_EXT): /usr/include/bits/in.h
mg$(OBJ_EXT): /usr/include/bits/ioctl-types.h
mg$(OBJ_EXT): /usr/include/bits/ioctls.h
mg$(OBJ_EXT): /usr/include/bits/local_lim.h
mg$(OBJ_EXT): /usr/include/bits/mathcalls.h
mg$(OBJ_EXT): /usr/include/bits/mathdef.h
mg$(OBJ_EXT): /usr/include/bits/posix1_lim.h
mg$(OBJ_EXT): /usr/include/bits/posix2_lim.h
mg$(OBJ_EXT): /usr/include/bits/posix_opt.h
mg$(OBJ_EXT): /usr/include/bits/select.h
mg$(OBJ_EXT): /usr/include/bits/setjmp.h
mg$(OBJ_EXT): /usr/include/bits/sigaction.h
mg$(OBJ_EXT): /usr/include/bits/sigcontext.h
mg$(OBJ_EXT): /usr/include/bits/siginfo.h
mg$(OBJ_EXT): /usr/include/bits/signum.h
mg$(OBJ_EXT): /usr/include/bits/sigset.h
mg$(OBJ_EXT): /usr/include/bits/sigstack.h
mg$(OBJ_EXT): /usr/include/bits/sockaddr.h
mg$(OBJ_EXT): /usr/include/bits/socket.h
mg$(OBJ_EXT): /usr/include/bits/stat.h
mg$(OBJ_EXT): /usr/include/bits/stdio_lim.h
mg$(OBJ_EXT): /usr/include/bits/time.h
mg$(OBJ_EXT): /usr/include/bits/types.h
mg$(OBJ_EXT): /usr/include/bits/wordsize.h
mg$(OBJ_EXT): /usr/include/ctype.h
mg$(OBJ_EXT): /usr/include/dirent.h
mg$(OBJ_EXT): /usr/include/endian.h
mg$(OBJ_EXT): /usr/include/errno.h
mg$(OBJ_EXT): /usr/include/features.h
mg$(OBJ_EXT): /usr/include/getopt.h
mg$(OBJ_EXT): /usr/include/gnu/stubs.h
mg$(OBJ_EXT): /usr/include/libio.h
mg$(OBJ_EXT): /usr/include/limits.h
mg$(OBJ_EXT): /usr/include/linux/errno.h
mg$(OBJ_EXT): /usr/include/linux/limits.h
mg$(OBJ_EXT): /usr/include/linux/param.h
mg$(OBJ_EXT): /usr/include/locale.h
mg$(OBJ_EXT): /usr/include/math.h
mg$(OBJ_EXT): /usr/include/netinet/in.h
mg$(OBJ_EXT): /usr/include/setjmp.h
mg$(OBJ_EXT): /usr/include/signal.h
mg$(OBJ_EXT): /usr/include/stdint.h
mg$(OBJ_EXT): /usr/include/stdio.h
mg$(OBJ_EXT): /usr/include/stdlib.h
mg$(OBJ_EXT): /usr/include/string.h
mg$(OBJ_EXT): /usr/include/sys/cdefs.h
mg$(OBJ_EXT): /usr/include/sys/ioctl.h
mg$(OBJ_EXT): /usr/include/sys/param.h
mg$(OBJ_EXT): /usr/include/sys/select.h
mg$(OBJ_EXT): /usr/include/sys/stat.h
mg$(OBJ_EXT): /usr/include/sys/sysmacros.h
mg$(OBJ_EXT): /usr/include/sys/time.h
mg$(OBJ_EXT): /usr/include/sys/times.h
mg$(OBJ_EXT): /usr/include/sys/ttydefaults.h
mg$(OBJ_EXT): /usr/include/sys/types.h
mg$(OBJ_EXT): /usr/include/time.h
mg$(OBJ_EXT): /usr/include/unistd.h
mg$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
mg$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
mg$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
mg$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
mg$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
mg$(OBJ_EXT): EXTERN.h
mg$(OBJ_EXT): av.h
mg$(OBJ_EXT): config.h
mg$(OBJ_EXT): cop.h
mg$(OBJ_EXT): cv.h
mg$(OBJ_EXT): embed.h
mg$(OBJ_EXT): form.h
mg$(OBJ_EXT): gv.h
mg$(OBJ_EXT): handy.h
mg$(OBJ_EXT): hv.h
mg$(OBJ_EXT): mg.c
mg$(OBJ_EXT): mg.h
mg$(OBJ_EXT): op.h
mg$(OBJ_EXT): opcode.h
mg$(OBJ_EXT): perl.h
mg$(OBJ_EXT): perly.h
mg$(OBJ_EXT): pp.h
mg$(OBJ_EXT): proto.h
mg$(OBJ_EXT): regexp.h
mg$(OBJ_EXT): scope.h
mg$(OBJ_EXT): sv.h
mg$(OBJ_EXT): unixish.h
mg$(OBJ_EXT): util.h
perl$(OBJ_EXT): 
perl$(OBJ_EXT): /usr/include/_G_config.h
perl$(OBJ_EXT): /usr/include/alloca.h
perl$(OBJ_EXT): /usr/include/asm/errno.h
perl$(OBJ_EXT): /usr/include/asm/ioctl.h
perl$(OBJ_EXT): /usr/include/asm/ioctls.h
perl$(OBJ_EXT): /usr/include/asm/param.h
perl$(OBJ_EXT): /usr/include/asm/sigcontext.h
perl$(OBJ_EXT): /usr/include/asm/socket.h
perl$(OBJ_EXT): /usr/include/asm/sockios.h
perl$(OBJ_EXT): /usr/include/bits/byteswap.h
perl$(OBJ_EXT): /usr/include/bits/confname.h
perl$(OBJ_EXT): /usr/include/bits/dirent.h
perl$(OBJ_EXT): /usr/include/bits/endian.h
perl$(OBJ_EXT): /usr/include/bits/errno.h
perl$(OBJ_EXT): /usr/include/bits/huge_val.h
perl$(OBJ_EXT): /usr/include/bits/in.h
perl$(OBJ_EXT): /usr/include/bits/ioctl-types.h
perl$(OBJ_EXT): /usr/include/bits/ioctls.h
perl$(OBJ_EXT): /usr/include/bits/local_lim.h
perl$(OBJ_EXT): /usr/include/bits/mathcalls.h
perl$(OBJ_EXT): /usr/include/bits/mathdef.h
perl$(OBJ_EXT): /usr/include/bits/posix1_lim.h
perl$(OBJ_EXT): /usr/include/bits/posix2_lim.h
perl$(OBJ_EXT): /usr/include/bits/posix_opt.h
perl$(OBJ_EXT): /usr/include/bits/select.h
perl$(OBJ_EXT): /usr/include/bits/setjmp.h
perl$(OBJ_EXT): /usr/include/bits/sigaction.h
perl$(OBJ_EXT): /usr/include/bits/sigcontext.h
perl$(OBJ_EXT): /usr/include/bits/siginfo.h
perl$(OBJ_EXT): /usr/include/bits/signum.h
perl$(OBJ_EXT): /usr/include/bits/sigset.h
perl$(OBJ_EXT): /usr/include/bits/sigstack.h
perl$(OBJ_EXT): /usr/include/bits/sockaddr.h
perl$(OBJ_EXT): /usr/include/bits/socket.h
perl$(OBJ_EXT): /usr/include/bits/stat.h
perl$(OBJ_EXT): /usr/include/bits/stdio_lim.h
perl$(OBJ_EXT): /usr/include/bits/time.h
perl$(OBJ_EXT): /usr/include/bits/types.h
perl$(OBJ_EXT): /usr/include/bits/wordsize.h
perl$(OBJ_EXT): /usr/include/ctype.h
perl$(OBJ_EXT): /usr/include/dirent.h
perl$(OBJ_EXT): /usr/include/endian.h
perl$(OBJ_EXT): /usr/include/errno.h
perl$(OBJ_EXT): /usr/include/features.h
perl$(OBJ_EXT): /usr/include/getopt.h
perl$(OBJ_EXT): /usr/include/gnu/stubs.h
perl$(OBJ_EXT): /usr/include/libio.h
perl$(OBJ_EXT): /usr/include/limits.h
perl$(OBJ_EXT): /usr/include/linux/errno.h
perl$(OBJ_EXT): /usr/include/linux/limits.h
perl$(OBJ_EXT): /usr/include/linux/param.h
perl$(OBJ_EXT): /usr/include/locale.h
perl$(OBJ_EXT): /usr/include/math.h
perl$(OBJ_EXT): /usr/include/netinet/in.h
perl$(OBJ_EXT): /usr/include/setjmp.h
perl$(OBJ_EXT): /usr/include/signal.h
perl$(OBJ_EXT): /usr/include/stdint.h
perl$(OBJ_EXT): /usr/include/stdio.h
perl$(OBJ_EXT): /usr/include/stdlib.h
perl$(OBJ_EXT): /usr/include/string.h
perl$(OBJ_EXT): /usr/include/sys/cdefs.h
perl$(OBJ_EXT): /usr/include/sys/ioctl.h
perl$(OBJ_EXT): /usr/include/sys/param.h
perl$(OBJ_EXT): /usr/include/sys/select.h
perl$(OBJ_EXT): /usr/include/sys/stat.h
perl$(OBJ_EXT): /usr/include/sys/sysmacros.h
perl$(OBJ_EXT): /usr/include/sys/time.h
perl$(OBJ_EXT): /usr/include/sys/times.h
perl$(OBJ_EXT): /usr/include/sys/ttydefaults.h
perl$(OBJ_EXT): /usr/include/sys/types.h
perl$(OBJ_EXT): /usr/include/time.h
perl$(OBJ_EXT): /usr/include/unistd.h
perl$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
perl$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
perl$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
perl$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
perl$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
perl$(OBJ_EXT): EXTERN.h
perl$(OBJ_EXT): av.h
perl$(OBJ_EXT): config.h
perl$(OBJ_EXT): cop.h
perl$(OBJ_EXT): cv.h
perl$(OBJ_EXT): embed.h
perl$(OBJ_EXT): form.h
perl$(OBJ_EXT): gv.h
perl$(OBJ_EXT): handy.h
perl$(OBJ_EXT): hv.h
perl$(OBJ_EXT): mg.h
perl$(OBJ_EXT): op.h
perl$(OBJ_EXT): opcode.h
perl$(OBJ_EXT): patchlevel.h
perl$(OBJ_EXT): perl.c
perl$(OBJ_EXT): perl.h
perl$(OBJ_EXT): perly.h
perl$(OBJ_EXT): pp.h
perl$(OBJ_EXT): proto.h
perl$(OBJ_EXT): regexp.h
perl$(OBJ_EXT): scope.h
perl$(OBJ_EXT): sv.h
perl$(OBJ_EXT): unixish.h
perl$(OBJ_EXT): util.h
perly$(OBJ_EXT): 
perly$(OBJ_EXT): /usr/include/_G_config.h
perly$(OBJ_EXT): /usr/include/alloca.h
perly$(OBJ_EXT): /usr/include/asm/errno.h
perly$(OBJ_EXT): /usr/include/asm/ioctl.h
perly$(OBJ_EXT): /usr/include/asm/ioctls.h
perly$(OBJ_EXT): /usr/include/asm/param.h
perly$(OBJ_EXT): /usr/include/asm/sigcontext.h
perly$(OBJ_EXT): /usr/include/asm/socket.h
perly$(OBJ_EXT): /usr/include/asm/sockios.h
perly$(OBJ_EXT): /usr/include/bits/byteswap.h
perly$(OBJ_EXT): /usr/include/bits/dirent.h
perly$(OBJ_EXT): /usr/include/bits/endian.h
perly$(OBJ_EXT): /usr/include/bits/errno.h
perly$(OBJ_EXT): /usr/include/bits/huge_val.h
perly$(OBJ_EXT): /usr/include/bits/in.h
perly$(OBJ_EXT): /usr/include/bits/ioctl-types.h
perly$(OBJ_EXT): /usr/include/bits/ioctls.h
perly$(OBJ_EXT): /usr/include/bits/local_lim.h
perly$(OBJ_EXT): /usr/include/bits/mathcalls.h
perly$(OBJ_EXT): /usr/include/bits/mathdef.h
perly$(OBJ_EXT): /usr/include/bits/posix1_lim.h
perly$(OBJ_EXT): /usr/include/bits/posix2_lim.h
perly$(OBJ_EXT): /usr/include/bits/select.h
perly$(OBJ_EXT): /usr/include/bits/setjmp.h
perly$(OBJ_EXT): /usr/include/bits/sigaction.h
perly$(OBJ_EXT): /usr/include/bits/sigcontext.h
perly$(OBJ_EXT): /usr/include/bits/siginfo.h
perly$(OBJ_EXT): /usr/include/bits/signum.h
perly$(OBJ_EXT): /usr/include/bits/sigset.h
perly$(OBJ_EXT): /usr/include/bits/sigstack.h
perly$(OBJ_EXT): /usr/include/bits/sockaddr.h
perly$(OBJ_EXT): /usr/include/bits/socket.h
perly$(OBJ_EXT): /usr/include/bits/stat.h
perly$(OBJ_EXT): /usr/include/bits/stdio_lim.h
perly$(OBJ_EXT): /usr/include/bits/time.h
perly$(OBJ_EXT): /usr/include/bits/types.h
perly$(OBJ_EXT): /usr/include/bits/wordsize.h
perly$(OBJ_EXT): /usr/include/ctype.h
perly$(OBJ_EXT): /usr/include/dirent.h
perly$(OBJ_EXT): /usr/include/endian.h
perly$(OBJ_EXT): /usr/include/errno.h
perly$(OBJ_EXT): /usr/include/features.h
perly$(OBJ_EXT): /usr/include/gnu/stubs.h
perly$(OBJ_EXT): /usr/include/libio.h
perly$(OBJ_EXT): /usr/include/limits.h
perly$(OBJ_EXT): /usr/include/linux/errno.h
perly$(OBJ_EXT): /usr/include/linux/limits.h
perly$(OBJ_EXT): /usr/include/linux/param.h
perly$(OBJ_EXT): /usr/include/locale.h
perly$(OBJ_EXT): /usr/include/math.h
perly$(OBJ_EXT): /usr/include/netinet/in.h
perly$(OBJ_EXT): /usr/include/setjmp.h
perly$(OBJ_EXT): /usr/include/signal.h
perly$(OBJ_EXT): /usr/include/stdint.h
perly$(OBJ_EXT): /usr/include/stdio.h
perly$(OBJ_EXT): /usr/include/stdlib.h
perly$(OBJ_EXT): /usr/include/string.h
perly$(OBJ_EXT): /usr/include/sys/cdefs.h
perly$(OBJ_EXT): /usr/include/sys/ioctl.h
perly$(OBJ_EXT): /usr/include/sys/param.h
perly$(OBJ_EXT): /usr/include/sys/select.h
perly$(OBJ_EXT): /usr/include/sys/stat.h
perly$(OBJ_EXT): /usr/include/sys/sysmacros.h
perly$(OBJ_EXT): /usr/include/sys/time.h
perly$(OBJ_EXT): /usr/include/sys/times.h
perly$(OBJ_EXT): /usr/include/sys/ttydefaults.h
perly$(OBJ_EXT): /usr/include/sys/types.h
perly$(OBJ_EXT): /usr/include/time.h
perly$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
perly$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
perly$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
perly$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
perly$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
perly$(OBJ_EXT): EXTERN.h
perly$(OBJ_EXT): av.h
perly$(OBJ_EXT): config.h
perly$(OBJ_EXT): cop.h
perly$(OBJ_EXT): cv.h
perly$(OBJ_EXT): embed.h
perly$(OBJ_EXT): form.h
perly$(OBJ_EXT): gv.h
perly$(OBJ_EXT): handy.h
perly$(OBJ_EXT): hv.h
perly$(OBJ_EXT): mg.h
perly$(OBJ_EXT): op.h
perly$(OBJ_EXT): opcode.h
perly$(OBJ_EXT): perl.h
perly$(OBJ_EXT): perly.c
perly$(OBJ_EXT): perly.h
perly$(OBJ_EXT): pp.h
perly$(OBJ_EXT): proto.h
perly$(OBJ_EXT): regexp.h
perly$(OBJ_EXT): scope.h
perly$(OBJ_EXT): sv.h
perly$(OBJ_EXT): unixish.h
perly$(OBJ_EXT): util.h
pp$(OBJ_EXT): 
pp$(OBJ_EXT): /usr/include/_G_config.h
pp$(OBJ_EXT): /usr/include/alloca.h
pp$(OBJ_EXT): /usr/include/asm/errno.h
pp$(OBJ_EXT): /usr/include/asm/ioctl.h
pp$(OBJ_EXT): /usr/include/asm/ioctls.h
pp$(OBJ_EXT): /usr/include/asm/param.h
pp$(OBJ_EXT): /usr/include/asm/sigcontext.h
pp$(OBJ_EXT): /usr/include/asm/socket.h
pp$(OBJ_EXT): /usr/include/asm/sockios.h
pp$(OBJ_EXT): /usr/include/bits/byteswap.h
pp$(OBJ_EXT): /usr/include/bits/dirent.h
pp$(OBJ_EXT): /usr/include/bits/endian.h
pp$(OBJ_EXT): /usr/include/bits/errno.h
pp$(OBJ_EXT): /usr/include/bits/huge_val.h
pp$(OBJ_EXT): /usr/include/bits/in.h
pp$(OBJ_EXT): /usr/include/bits/ioctl-types.h
pp$(OBJ_EXT): /usr/include/bits/ioctls.h
pp$(OBJ_EXT): /usr/include/bits/local_lim.h
pp$(OBJ_EXT): /usr/include/bits/mathcalls.h
pp$(OBJ_EXT): /usr/include/bits/mathdef.h
pp$(OBJ_EXT): /usr/include/bits/posix1_lim.h
pp$(OBJ_EXT): /usr/include/bits/posix2_lim.h
pp$(OBJ_EXT): /usr/include/bits/select.h
pp$(OBJ_EXT): /usr/include/bits/setjmp.h
pp$(OBJ_EXT): /usr/include/bits/sigaction.h
pp$(OBJ_EXT): /usr/include/bits/sigcontext.h
pp$(OBJ_EXT): /usr/include/bits/siginfo.h
pp$(OBJ_EXT): /usr/include/bits/signum.h
pp$(OBJ_EXT): /usr/include/bits/sigset.h
pp$(OBJ_EXT): /usr/include/bits/sigstack.h
pp$(OBJ_EXT): /usr/include/bits/sockaddr.h
pp$(OBJ_EXT): /usr/include/bits/socket.h
pp$(OBJ_EXT): /usr/include/bits/stat.h
pp$(OBJ_EXT): /usr/include/bits/stdio_lim.h
pp$(OBJ_EXT): /usr/include/bits/time.h
pp$(OBJ_EXT): /usr/include/bits/types.h
pp$(OBJ_EXT): /usr/include/bits/wordsize.h
pp$(OBJ_EXT): /usr/include/ctype.h
pp$(OBJ_EXT): /usr/include/dirent.h
pp$(OBJ_EXT): /usr/include/endian.h
pp$(OBJ_EXT): /usr/include/errno.h
pp$(OBJ_EXT): /usr/include/features.h
pp$(OBJ_EXT): /usr/include/gnu/stubs.h
pp$(OBJ_EXT): /usr/include/libio.h
pp$(OBJ_EXT): /usr/include/limits.h
pp$(OBJ_EXT): /usr/include/linux/errno.h
pp$(OBJ_EXT): /usr/include/linux/limits.h
pp$(OBJ_EXT): /usr/include/linux/param.h
pp$(OBJ_EXT): /usr/include/locale.h
pp$(OBJ_EXT): /usr/include/math.h
pp$(OBJ_EXT): /usr/include/netinet/in.h
pp$(OBJ_EXT): /usr/include/setjmp.h
pp$(OBJ_EXT): /usr/include/signal.h
pp$(OBJ_EXT): /usr/include/stdint.h
pp$(OBJ_EXT): /usr/include/stdio.h
pp$(OBJ_EXT): /usr/include/stdlib.h
pp$(OBJ_EXT): /usr/include/string.h
pp$(OBJ_EXT): /usr/include/sys/cdefs.h
pp$(OBJ_EXT): /usr/include/sys/ioctl.h
pp$(OBJ_EXT): /usr/include/sys/param.h
pp$(OBJ_EXT): /usr/include/sys/select.h
pp$(OBJ_EXT): /usr/include/sys/stat.h
pp$(OBJ_EXT): /usr/include/sys/sysmacros.h
pp$(OBJ_EXT): /usr/include/sys/time.h
pp$(OBJ_EXT): /usr/include/sys/times.h
pp$(OBJ_EXT): /usr/include/sys/ttydefaults.h
pp$(OBJ_EXT): /usr/include/sys/types.h
pp$(OBJ_EXT): /usr/include/time.h
pp$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
pp$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
pp$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
pp$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
pp$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
pp$(OBJ_EXT): EXTERN.h
pp$(OBJ_EXT): av.h
pp$(OBJ_EXT): config.h
pp$(OBJ_EXT): cop.h
pp$(OBJ_EXT): cv.h
pp$(OBJ_EXT): embed.h
pp$(OBJ_EXT): form.h
pp$(OBJ_EXT): gv.h
pp$(OBJ_EXT): handy.h
pp$(OBJ_EXT): hv.h
pp$(OBJ_EXT): mg.h
pp$(OBJ_EXT): op.h
pp$(OBJ_EXT): opcode.h
pp$(OBJ_EXT): perl.h
pp$(OBJ_EXT): perly.h
pp$(OBJ_EXT): pp.c
pp$(OBJ_EXT): pp.h
pp$(OBJ_EXT): proto.h
pp$(OBJ_EXT): regexp.h
pp$(OBJ_EXT): scope.h
pp$(OBJ_EXT): sv.h
pp$(OBJ_EXT): unixish.h
pp$(OBJ_EXT): util.h
pp_hot$(OBJ_EXT): 
pp_hot$(OBJ_EXT): /usr/include/_G_config.h
pp_hot$(OBJ_EXT): /usr/include/alloca.h
pp_hot$(OBJ_EXT): /usr/include/asm/errno.h
pp_hot$(OBJ_EXT): /usr/include/asm/ioctl.h
pp_hot$(OBJ_EXT): /usr/include/asm/ioctls.h
pp_hot$(OBJ_EXT): /usr/include/asm/param.h
pp_hot$(OBJ_EXT): /usr/include/asm/sigcontext.h
pp_hot$(OBJ_EXT): /usr/include/asm/socket.h
pp_hot$(OBJ_EXT): /usr/include/asm/sockios.h
pp_hot$(OBJ_EXT): /usr/include/bits/byteswap.h
pp_hot$(OBJ_EXT): /usr/include/bits/dirent.h
pp_hot$(OBJ_EXT): /usr/include/bits/endian.h
pp_hot$(OBJ_EXT): /usr/include/bits/errno.h
pp_hot$(OBJ_EXT): /usr/include/bits/huge_val.h
pp_hot$(OBJ_EXT): /usr/include/bits/in.h
pp_hot$(OBJ_EXT): /usr/include/bits/ioctl-types.h
pp_hot$(OBJ_EXT): /usr/include/bits/ioctls.h
pp_hot$(OBJ_EXT): /usr/include/bits/local_lim.h
pp_hot$(OBJ_EXT): /usr/include/bits/mathcalls.h
pp_hot$(OBJ_EXT): /usr/include/bits/mathdef.h
pp_hot$(OBJ_EXT): /usr/include/bits/posix1_lim.h
pp_hot$(OBJ_EXT): /usr/include/bits/posix2_lim.h
pp_hot$(OBJ_EXT): /usr/include/bits/select.h
pp_hot$(OBJ_EXT): /usr/include/bits/setjmp.h
pp_hot$(OBJ_EXT): /usr/include/bits/sigaction.h
pp_hot$(OBJ_EXT): /usr/include/bits/sigcontext.h
pp_hot$(OBJ_EXT): /usr/include/bits/siginfo.h
pp_hot$(OBJ_EXT): /usr/include/bits/signum.h
pp_hot$(OBJ_EXT): /usr/include/bits/sigset.h
pp_hot$(OBJ_EXT): /usr/include/bits/sigstack.h
pp_hot$(OBJ_EXT): /usr/include/bits/sockaddr.h
pp_hot$(OBJ_EXT): /usr/include/bits/socket.h
pp_hot$(OBJ_EXT): /usr/include/bits/stat.h
pp_hot$(OBJ_EXT): /usr/include/bits/stdio_lim.h
pp_hot$(OBJ_EXT): /usr/include/bits/time.h
pp_hot$(OBJ_EXT): /usr/include/bits/types.h
pp_hot$(OBJ_EXT): /usr/include/bits/wordsize.h
pp_hot$(OBJ_EXT): /usr/include/ctype.h
pp_hot$(OBJ_EXT): /usr/include/dirent.h
pp_hot$(OBJ_EXT): /usr/include/endian.h
pp_hot$(OBJ_EXT): /usr/include/errno.h
pp_hot$(OBJ_EXT): /usr/include/features.h
pp_hot$(OBJ_EXT): /usr/include/gnu/stubs.h
pp_hot$(OBJ_EXT): /usr/include/libio.h
pp_hot$(OBJ_EXT): /usr/include/limits.h
pp_hot$(OBJ_EXT): /usr/include/linux/errno.h
pp_hot$(OBJ_EXT): /usr/include/linux/limits.h
pp_hot$(OBJ_EXT): /usr/include/linux/param.h
pp_hot$(OBJ_EXT): /usr/include/locale.h
pp_hot$(OBJ_EXT): /usr/include/math.h
pp_hot$(OBJ_EXT): /usr/include/netinet/in.h
pp_hot$(OBJ_EXT): /usr/include/setjmp.h
pp_hot$(OBJ_EXT): /usr/include/signal.h
pp_hot$(OBJ_EXT): /usr/include/stdint.h
pp_hot$(OBJ_EXT): /usr/include/stdio.h
pp_hot$(OBJ_EXT): /usr/include/stdlib.h
pp_hot$(OBJ_EXT): /usr/include/string.h
pp_hot$(OBJ_EXT): /usr/include/sys/cdefs.h
pp_hot$(OBJ_EXT): /usr/include/sys/ioctl.h
pp_hot$(OBJ_EXT): /usr/include/sys/param.h
pp_hot$(OBJ_EXT): /usr/include/sys/select.h
pp_hot$(OBJ_EXT): /usr/include/sys/stat.h
pp_hot$(OBJ_EXT): /usr/include/sys/sysmacros.h
pp_hot$(OBJ_EXT): /usr/include/sys/time.h
pp_hot$(OBJ_EXT): /usr/include/sys/times.h
pp_hot$(OBJ_EXT): /usr/include/sys/ttydefaults.h
pp_hot$(OBJ_EXT): /usr/include/sys/types.h
pp_hot$(OBJ_EXT): /usr/include/time.h
pp_hot$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
pp_hot$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
pp_hot$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
pp_hot$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
pp_hot$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
pp_hot$(OBJ_EXT): EXTERN.h
pp_hot$(OBJ_EXT): av.h
pp_hot$(OBJ_EXT): config.h
pp_hot$(OBJ_EXT): cop.h
pp_hot$(OBJ_EXT): cv.h
pp_hot$(OBJ_EXT): embed.h
pp_hot$(OBJ_EXT): form.h
pp_hot$(OBJ_EXT): gv.h
pp_hot$(OBJ_EXT): handy.h
pp_hot$(OBJ_EXT): hv.h
pp_hot$(OBJ_EXT): mg.h
pp_hot$(OBJ_EXT): op.h
pp_hot$(OBJ_EXT): opcode.h
pp_hot$(OBJ_EXT): perl.h
pp_hot$(OBJ_EXT): perly.h
pp_hot$(OBJ_EXT): pp.h
pp_hot$(OBJ_EXT): pp_hot.c
pp_hot$(OBJ_EXT): proto.h
pp_hot$(OBJ_EXT): regexp.h
pp_hot$(OBJ_EXT): scope.h
pp_hot$(OBJ_EXT): sv.h
pp_hot$(OBJ_EXT): unixish.h
pp_hot$(OBJ_EXT): util.h
pp_ctl$(OBJ_EXT): 
pp_ctl$(OBJ_EXT): /usr/include/_G_config.h
pp_ctl$(OBJ_EXT): /usr/include/alloca.h
pp_ctl$(OBJ_EXT): /usr/include/asm/errno.h
pp_ctl$(OBJ_EXT): /usr/include/asm/ioctl.h
pp_ctl$(OBJ_EXT): /usr/include/asm/ioctls.h
pp_ctl$(OBJ_EXT): /usr/include/asm/param.h
pp_ctl$(OBJ_EXT): /usr/include/asm/sigcontext.h
pp_ctl$(OBJ_EXT): /usr/include/asm/socket.h
pp_ctl$(OBJ_EXT): /usr/include/asm/sockios.h
pp_ctl$(OBJ_EXT): /usr/include/bits/byteswap.h
pp_ctl$(OBJ_EXT): /usr/include/bits/dirent.h
pp_ctl$(OBJ_EXT): /usr/include/bits/endian.h
pp_ctl$(OBJ_EXT): /usr/include/bits/errno.h
pp_ctl$(OBJ_EXT): /usr/include/bits/huge_val.h
pp_ctl$(OBJ_EXT): /usr/include/bits/in.h
pp_ctl$(OBJ_EXT): /usr/include/bits/ioctl-types.h
pp_ctl$(OBJ_EXT): /usr/include/bits/ioctls.h
pp_ctl$(OBJ_EXT): /usr/include/bits/local_lim.h
pp_ctl$(OBJ_EXT): /usr/include/bits/mathcalls.h
pp_ctl$(OBJ_EXT): /usr/include/bits/mathdef.h
pp_ctl$(OBJ_EXT): /usr/include/bits/posix1_lim.h
pp_ctl$(OBJ_EXT): /usr/include/bits/posix2_lim.h
pp_ctl$(OBJ_EXT): /usr/include/bits/select.h
pp_ctl$(OBJ_EXT): /usr/include/bits/setjmp.h
pp_ctl$(OBJ_EXT): /usr/include/bits/sigaction.h
pp_ctl$(OBJ_EXT): /usr/include/bits/sigcontext.h
pp_ctl$(OBJ_EXT): /usr/include/bits/siginfo.h
pp_ctl$(OBJ_EXT): /usr/include/bits/signum.h
pp_ctl$(OBJ_EXT): /usr/include/bits/sigset.h
pp_ctl$(OBJ_EXT): /usr/include/bits/sigstack.h
pp_ctl$(OBJ_EXT): /usr/include/bits/sockaddr.h
pp_ctl$(OBJ_EXT): /usr/include/bits/socket.h
pp_ctl$(OBJ_EXT): /usr/include/bits/stat.h
pp_ctl$(OBJ_EXT): /usr/include/bits/stdio_lim.h
pp_ctl$(OBJ_EXT): /usr/include/bits/time.h
pp_ctl$(OBJ_EXT): /usr/include/bits/types.h
pp_ctl$(OBJ_EXT): /usr/include/bits/wordsize.h
pp_ctl$(OBJ_EXT): /usr/include/ctype.h
pp_ctl$(OBJ_EXT): /usr/include/dirent.h
pp_ctl$(OBJ_EXT): /usr/include/endian.h
pp_ctl$(OBJ_EXT): /usr/include/errno.h
pp_ctl$(OBJ_EXT): /usr/include/features.h
pp_ctl$(OBJ_EXT): /usr/include/gnu/stubs.h
pp_ctl$(OBJ_EXT): /usr/include/libio.h
pp_ctl$(OBJ_EXT): /usr/include/limits.h
pp_ctl$(OBJ_EXT): /usr/include/linux/errno.h
pp_ctl$(OBJ_EXT): /usr/include/linux/limits.h
pp_ctl$(OBJ_EXT): /usr/include/linux/param.h
pp_ctl$(OBJ_EXT): /usr/include/locale.h
pp_ctl$(OBJ_EXT): /usr/include/math.h
pp_ctl$(OBJ_EXT): /usr/include/netinet/in.h
pp_ctl$(OBJ_EXT): /usr/include/setjmp.h
pp_ctl$(OBJ_EXT): /usr/include/signal.h
pp_ctl$(OBJ_EXT): /usr/include/stdint.h
pp_ctl$(OBJ_EXT): /usr/include/stdio.h
pp_ctl$(OBJ_EXT): /usr/include/stdlib.h
pp_ctl$(OBJ_EXT): /usr/include/string.h
pp_ctl$(OBJ_EXT): /usr/include/sys/cdefs.h
pp_ctl$(OBJ_EXT): /usr/include/sys/ioctl.h
pp_ctl$(OBJ_EXT): /usr/include/sys/param.h
pp_ctl$(OBJ_EXT): /usr/include/sys/select.h
pp_ctl$(OBJ_EXT): /usr/include/sys/stat.h
pp_ctl$(OBJ_EXT): /usr/include/sys/sysmacros.h
pp_ctl$(OBJ_EXT): /usr/include/sys/time.h
pp_ctl$(OBJ_EXT): /usr/include/sys/times.h
pp_ctl$(OBJ_EXT): /usr/include/sys/ttydefaults.h
pp_ctl$(OBJ_EXT): /usr/include/sys/types.h
pp_ctl$(OBJ_EXT): /usr/include/time.h
pp_ctl$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
pp_ctl$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
pp_ctl$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
pp_ctl$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
pp_ctl$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
pp_ctl$(OBJ_EXT): EXTERN.h
pp_ctl$(OBJ_EXT): av.h
pp_ctl$(OBJ_EXT): config.h
pp_ctl$(OBJ_EXT): cop.h
pp_ctl$(OBJ_EXT): cv.h
pp_ctl$(OBJ_EXT): embed.h
pp_ctl$(OBJ_EXT): form.h
pp_ctl$(OBJ_EXT): gv.h
pp_ctl$(OBJ_EXT): handy.h
pp_ctl$(OBJ_EXT): hv.h
pp_ctl$(OBJ_EXT): mg.h
pp_ctl$(OBJ_EXT): op.h
pp_ctl$(OBJ_EXT): opcode.h
pp_ctl$(OBJ_EXT): perl.h
pp_ctl$(OBJ_EXT): perly.h
pp_ctl$(OBJ_EXT): pp.h
pp_ctl$(OBJ_EXT): pp_ctl.c
pp_ctl$(OBJ_EXT): proto.h
pp_ctl$(OBJ_EXT): regexp.h
pp_ctl$(OBJ_EXT): scope.h
pp_ctl$(OBJ_EXT): sv.h
pp_ctl$(OBJ_EXT): unixish.h
pp_ctl$(OBJ_EXT): util.h
pp_sys$(OBJ_EXT): 
pp_sys$(OBJ_EXT): /usr/include/_G_config.h
pp_sys$(OBJ_EXT): /usr/include/alloca.h
pp_sys$(OBJ_EXT): /usr/include/asm/errno.h
pp_sys$(OBJ_EXT): /usr/include/asm/ioctl.h
pp_sys$(OBJ_EXT): /usr/include/asm/ioctls.h
pp_sys$(OBJ_EXT): /usr/include/asm/param.h
pp_sys$(OBJ_EXT): /usr/include/asm/sigcontext.h
pp_sys$(OBJ_EXT): /usr/include/asm/socket.h
pp_sys$(OBJ_EXT): /usr/include/asm/sockios.h
pp_sys$(OBJ_EXT): /usr/include/bits/byteswap.h
pp_sys$(OBJ_EXT): /usr/include/bits/dirent.h
pp_sys$(OBJ_EXT): /usr/include/bits/endian.h
pp_sys$(OBJ_EXT): /usr/include/bits/errno.h
pp_sys$(OBJ_EXT): /usr/include/bits/fcntl.h
pp_sys$(OBJ_EXT): /usr/include/bits/huge_val.h
pp_sys$(OBJ_EXT): /usr/include/bits/in.h
pp_sys$(OBJ_EXT): /usr/include/bits/ioctl-types.h
pp_sys$(OBJ_EXT): /usr/include/bits/ioctls.h
pp_sys$(OBJ_EXT): /usr/include/bits/local_lim.h
pp_sys$(OBJ_EXT): /usr/include/bits/mathcalls.h
pp_sys$(OBJ_EXT): /usr/include/bits/mathdef.h
pp_sys$(OBJ_EXT): /usr/include/bits/posix1_lim.h
pp_sys$(OBJ_EXT): /usr/include/bits/posix2_lim.h
pp_sys$(OBJ_EXT): /usr/include/bits/select.h
pp_sys$(OBJ_EXT): /usr/include/bits/setjmp.h
pp_sys$(OBJ_EXT): /usr/include/bits/sigaction.h
pp_sys$(OBJ_EXT): /usr/include/bits/sigcontext.h
pp_sys$(OBJ_EXT): /usr/include/bits/siginfo.h
pp_sys$(OBJ_EXT): /usr/include/bits/signum.h
pp_sys$(OBJ_EXT): /usr/include/bits/sigset.h
pp_sys$(OBJ_EXT): /usr/include/bits/sigstack.h
pp_sys$(OBJ_EXT): /usr/include/bits/sockaddr.h
pp_sys$(OBJ_EXT): /usr/include/bits/socket.h
pp_sys$(OBJ_EXT): /usr/include/bits/stat.h
pp_sys$(OBJ_EXT): /usr/include/bits/stdio_lim.h
pp_sys$(OBJ_EXT): /usr/include/bits/time.h
pp_sys$(OBJ_EXT): /usr/include/bits/types.h
pp_sys$(OBJ_EXT): /usr/include/bits/wordsize.h
pp_sys$(OBJ_EXT): /usr/include/ctype.h
pp_sys$(OBJ_EXT): /usr/include/dirent.h
pp_sys$(OBJ_EXT): /usr/include/endian.h
pp_sys$(OBJ_EXT): /usr/include/errno.h
pp_sys$(OBJ_EXT): /usr/include/fcntl.h
pp_sys$(OBJ_EXT): /usr/include/features.h
pp_sys$(OBJ_EXT): /usr/include/gnu/stubs.h
pp_sys$(OBJ_EXT): /usr/include/grp.h
pp_sys$(OBJ_EXT): /usr/include/libio.h
pp_sys$(OBJ_EXT): /usr/include/limits.h
pp_sys$(OBJ_EXT): /usr/include/linux/errno.h
pp_sys$(OBJ_EXT): /usr/include/linux/limits.h
pp_sys$(OBJ_EXT): /usr/include/linux/param.h
pp_sys$(OBJ_EXT): /usr/include/locale.h
pp_sys$(OBJ_EXT): /usr/include/math.h
pp_sys$(OBJ_EXT): /usr/include/netdb.h
pp_sys$(OBJ_EXT): /usr/include/netinet/in.h
pp_sys$(OBJ_EXT): /usr/include/pwd.h
pp_sys$(OBJ_EXT): /usr/include/rpc/netdb.h
pp_sys$(OBJ_EXT): /usr/include/setjmp.h
pp_sys$(OBJ_EXT): /usr/include/signal.h
pp_sys$(OBJ_EXT): /usr/include/stdint.h
pp_sys$(OBJ_EXT): /usr/include/stdio.h
pp_sys$(OBJ_EXT): /usr/include/stdlib.h
pp_sys$(OBJ_EXT): /usr/include/string.h
pp_sys$(OBJ_EXT): /usr/include/sys/cdefs.h
pp_sys$(OBJ_EXT): /usr/include/sys/file.h
pp_sys$(OBJ_EXT): /usr/include/sys/ioctl.h
pp_sys$(OBJ_EXT): /usr/include/sys/param.h
pp_sys$(OBJ_EXT): /usr/include/sys/select.h
pp_sys$(OBJ_EXT): /usr/include/sys/socket.h
pp_sys$(OBJ_EXT): /usr/include/sys/stat.h
pp_sys$(OBJ_EXT): /usr/include/sys/sysmacros.h
pp_sys$(OBJ_EXT): /usr/include/sys/time.h
pp_sys$(OBJ_EXT): /usr/include/sys/times.h
pp_sys$(OBJ_EXT): /usr/include/sys/ttydefaults.h
pp_sys$(OBJ_EXT): /usr/include/sys/types.h
pp_sys$(OBJ_EXT): /usr/include/time.h
pp_sys$(OBJ_EXT): /usr/include/utime.h
pp_sys$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
pp_sys$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
pp_sys$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
pp_sys$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
pp_sys$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
pp_sys$(OBJ_EXT): EXTERN.h
pp_sys$(OBJ_EXT): av.h
pp_sys$(OBJ_EXT): config.h
pp_sys$(OBJ_EXT): cop.h
pp_sys$(OBJ_EXT): cv.h
pp_sys$(OBJ_EXT): embed.h
pp_sys$(OBJ_EXT): form.h
pp_sys$(OBJ_EXT): gv.h
pp_sys$(OBJ_EXT): handy.h
pp_sys$(OBJ_EXT): hv.h
pp_sys$(OBJ_EXT): mg.h
pp_sys$(OBJ_EXT): op.h
pp_sys$(OBJ_EXT): opcode.h
pp_sys$(OBJ_EXT): perl.h
pp_sys$(OBJ_EXT): perly.h
pp_sys$(OBJ_EXT): pp.h
pp_sys$(OBJ_EXT): pp_sys.c
pp_sys$(OBJ_EXT): proto.h
pp_sys$(OBJ_EXT): regexp.h
pp_sys$(OBJ_EXT): scope.h
pp_sys$(OBJ_EXT): sv.h
pp_sys$(OBJ_EXT): unixish.h
pp_sys$(OBJ_EXT): util.h
regcomp$(OBJ_EXT): 
regcomp$(OBJ_EXT): /usr/include/_G_config.h
regcomp$(OBJ_EXT): /usr/include/alloca.h
regcomp$(OBJ_EXT): /usr/include/asm/errno.h
regcomp$(OBJ_EXT): /usr/include/asm/ioctl.h
regcomp$(OBJ_EXT): /usr/include/asm/ioctls.h
regcomp$(OBJ_EXT): /usr/include/asm/param.h
regcomp$(OBJ_EXT): /usr/include/asm/sigcontext.h
regcomp$(OBJ_EXT): /usr/include/asm/socket.h
regcomp$(OBJ_EXT): /usr/include/asm/sockios.h
regcomp$(OBJ_EXT): /usr/include/bits/byteswap.h
regcomp$(OBJ_EXT): /usr/include/bits/dirent.h
regcomp$(OBJ_EXT): /usr/include/bits/endian.h
regcomp$(OBJ_EXT): /usr/include/bits/errno.h
regcomp$(OBJ_EXT): /usr/include/bits/huge_val.h
regcomp$(OBJ_EXT): /usr/include/bits/in.h
regcomp$(OBJ_EXT): /usr/include/bits/ioctl-types.h
regcomp$(OBJ_EXT): /usr/include/bits/ioctls.h
regcomp$(OBJ_EXT): /usr/include/bits/local_lim.h
regcomp$(OBJ_EXT): /usr/include/bits/mathcalls.h
regcomp$(OBJ_EXT): /usr/include/bits/mathdef.h
regcomp$(OBJ_EXT): /usr/include/bits/posix1_lim.h
regcomp$(OBJ_EXT): /usr/include/bits/posix2_lim.h
regcomp$(OBJ_EXT): /usr/include/bits/select.h
regcomp$(OBJ_EXT): /usr/include/bits/setjmp.h
regcomp$(OBJ_EXT): /usr/include/bits/sigaction.h
regcomp$(OBJ_EXT): /usr/include/bits/sigcontext.h
regcomp$(OBJ_EXT): /usr/include/bits/siginfo.h
regcomp$(OBJ_EXT): /usr/include/bits/signum.h
regcomp$(OBJ_EXT): /usr/include/bits/sigset.h
regcomp$(OBJ_EXT): /usr/include/bits/sigstack.h
regcomp$(OBJ_EXT): /usr/include/bits/sockaddr.h
regcomp$(OBJ_EXT): /usr/include/bits/socket.h
regcomp$(OBJ_EXT): /usr/include/bits/stat.h
regcomp$(OBJ_EXT): /usr/include/bits/stdio_lim.h
regcomp$(OBJ_EXT): /usr/include/bits/time.h
regcomp$(OBJ_EXT): /usr/include/bits/types.h
regcomp$(OBJ_EXT): /usr/include/bits/wordsize.h
regcomp$(OBJ_EXT): /usr/include/ctype.h
regcomp$(OBJ_EXT): /usr/include/dirent.h
regcomp$(OBJ_EXT): /usr/include/endian.h
regcomp$(OBJ_EXT): /usr/include/errno.h
regcomp$(OBJ_EXT): /usr/include/features.h
regcomp$(OBJ_EXT): /usr/include/gnu/stubs.h
regcomp$(OBJ_EXT): /usr/include/libio.h
regcomp$(OBJ_EXT): /usr/include/limits.h
regcomp$(OBJ_EXT): /usr/include/linux/errno.h
regcomp$(OBJ_EXT): /usr/include/linux/limits.h
regcomp$(OBJ_EXT): /usr/include/linux/param.h
regcomp$(OBJ_EXT): /usr/include/locale.h
regcomp$(OBJ_EXT): /usr/include/math.h
regcomp$(OBJ_EXT): /usr/include/netinet/in.h
regcomp$(OBJ_EXT): /usr/include/setjmp.h
regcomp$(OBJ_EXT): /usr/include/signal.h
regcomp$(OBJ_EXT): /usr/include/stdint.h
regcomp$(OBJ_EXT): /usr/include/stdio.h
regcomp$(OBJ_EXT): /usr/include/stdlib.h
regcomp$(OBJ_EXT): /usr/include/string.h
regcomp$(OBJ_EXT): /usr/include/sys/cdefs.h
regcomp$(OBJ_EXT): /usr/include/sys/ioctl.h
regcomp$(OBJ_EXT): /usr/include/sys/param.h
regcomp$(OBJ_EXT): /usr/include/sys/select.h
regcomp$(OBJ_EXT): /usr/include/sys/stat.h
regcomp$(OBJ_EXT): /usr/include/sys/sysmacros.h
regcomp$(OBJ_EXT): /usr/include/sys/time.h
regcomp$(OBJ_EXT): /usr/include/sys/times.h
regcomp$(OBJ_EXT): /usr/include/sys/ttydefaults.h
regcomp$(OBJ_EXT): /usr/include/sys/types.h
regcomp$(OBJ_EXT): /usr/include/time.h
regcomp$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
regcomp$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
regcomp$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
regcomp$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
regcomp$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
regcomp$(OBJ_EXT): EXTERN.h
regcomp$(OBJ_EXT): INTERN.h
regcomp$(OBJ_EXT): av.h
regcomp$(OBJ_EXT): config.h
regcomp$(OBJ_EXT): cop.h
regcomp$(OBJ_EXT): cv.h
regcomp$(OBJ_EXT): embed.h
regcomp$(OBJ_EXT): form.h
regcomp$(OBJ_EXT): gv.h
regcomp$(OBJ_EXT): handy.h
regcomp$(OBJ_EXT): hv.h
regcomp$(OBJ_EXT): mg.h
regcomp$(OBJ_EXT): op.h
regcomp$(OBJ_EXT): opcode.h
regcomp$(OBJ_EXT): perl.h
regcomp$(OBJ_EXT): perly.h
regcomp$(OBJ_EXT): pp.h
regcomp$(OBJ_EXT): proto.h
regcomp$(OBJ_EXT): regcomp.c
regcomp$(OBJ_EXT): regcomp.h
regcomp$(OBJ_EXT): regexp.h
regcomp$(OBJ_EXT): scope.h
regcomp$(OBJ_EXT): sv.h
regcomp$(OBJ_EXT): unixish.h
regcomp$(OBJ_EXT): util.h
regexec$(OBJ_EXT): 
regexec$(OBJ_EXT): /usr/include/_G_config.h
regexec$(OBJ_EXT): /usr/include/alloca.h
regexec$(OBJ_EXT): /usr/include/asm/errno.h
regexec$(OBJ_EXT): /usr/include/asm/ioctl.h
regexec$(OBJ_EXT): /usr/include/asm/ioctls.h
regexec$(OBJ_EXT): /usr/include/asm/param.h
regexec$(OBJ_EXT): /usr/include/asm/sigcontext.h
regexec$(OBJ_EXT): /usr/include/asm/socket.h
regexec$(OBJ_EXT): /usr/include/asm/sockios.h
regexec$(OBJ_EXT): /usr/include/bits/byteswap.h
regexec$(OBJ_EXT): /usr/include/bits/dirent.h
regexec$(OBJ_EXT): /usr/include/bits/endian.h
regexec$(OBJ_EXT): /usr/include/bits/errno.h
regexec$(OBJ_EXT): /usr/include/bits/huge_val.h
regexec$(OBJ_EXT): /usr/include/bits/in.h
regexec$(OBJ_EXT): /usr/include/bits/ioctl-types.h
regexec$(OBJ_EXT): /usr/include/bits/ioctls.h
regexec$(OBJ_EXT): /usr/include/bits/local_lim.h
regexec$(OBJ_EXT): /usr/include/bits/mathcalls.h
regexec$(OBJ_EXT): /usr/include/bits/mathdef.h
regexec$(OBJ_EXT): /usr/include/bits/posix1_lim.h
regexec$(OBJ_EXT): /usr/include/bits/posix2_lim.h
regexec$(OBJ_EXT): /usr/include/bits/select.h
regexec$(OBJ_EXT): /usr/include/bits/setjmp.h
regexec$(OBJ_EXT): /usr/include/bits/sigaction.h
regexec$(OBJ_EXT): /usr/include/bits/sigcontext.h
regexec$(OBJ_EXT): /usr/include/bits/siginfo.h
regexec$(OBJ_EXT): /usr/include/bits/signum.h
regexec$(OBJ_EXT): /usr/include/bits/sigset.h
regexec$(OBJ_EXT): /usr/include/bits/sigstack.h
regexec$(OBJ_EXT): /usr/include/bits/sockaddr.h
regexec$(OBJ_EXT): /usr/include/bits/socket.h
regexec$(OBJ_EXT): /usr/include/bits/stat.h
regexec$(OBJ_EXT): /usr/include/bits/stdio_lim.h
regexec$(OBJ_EXT): /usr/include/bits/time.h
regexec$(OBJ_EXT): /usr/include/bits/types.h
regexec$(OBJ_EXT): /usr/include/bits/wordsize.h
regexec$(OBJ_EXT): /usr/include/ctype.h
regexec$(OBJ_EXT): /usr/include/dirent.h
regexec$(OBJ_EXT): /usr/include/endian.h
regexec$(OBJ_EXT): /usr/include/errno.h
regexec$(OBJ_EXT): /usr/include/features.h
regexec$(OBJ_EXT): /usr/include/gnu/stubs.h
regexec$(OBJ_EXT): /usr/include/libio.h
regexec$(OBJ_EXT): /usr/include/limits.h
regexec$(OBJ_EXT): /usr/include/linux/errno.h
regexec$(OBJ_EXT): /usr/include/linux/limits.h
regexec$(OBJ_EXT): /usr/include/linux/param.h
regexec$(OBJ_EXT): /usr/include/locale.h
regexec$(OBJ_EXT): /usr/include/math.h
regexec$(OBJ_EXT): /usr/include/netinet/in.h
regexec$(OBJ_EXT): /usr/include/setjmp.h
regexec$(OBJ_EXT): /usr/include/signal.h
regexec$(OBJ_EXT): /usr/include/stdint.h
regexec$(OBJ_EXT): /usr/include/stdio.h
regexec$(OBJ_EXT): /usr/include/stdlib.h
regexec$(OBJ_EXT): /usr/include/string.h
regexec$(OBJ_EXT): /usr/include/sys/cdefs.h
regexec$(OBJ_EXT): /usr/include/sys/ioctl.h
regexec$(OBJ_EXT): /usr/include/sys/param.h
regexec$(OBJ_EXT): /usr/include/sys/select.h
regexec$(OBJ_EXT): /usr/include/sys/stat.h
regexec$(OBJ_EXT): /usr/include/sys/sysmacros.h
regexec$(OBJ_EXT): /usr/include/sys/time.h
regexec$(OBJ_EXT): /usr/include/sys/times.h
regexec$(OBJ_EXT): /usr/include/sys/ttydefaults.h
regexec$(OBJ_EXT): /usr/include/sys/types.h
regexec$(OBJ_EXT): /usr/include/time.h
regexec$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
regexec$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
regexec$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
regexec$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
regexec$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
regexec$(OBJ_EXT): EXTERN.h
regexec$(OBJ_EXT): av.h
regexec$(OBJ_EXT): config.h
regexec$(OBJ_EXT): cop.h
regexec$(OBJ_EXT): cv.h
regexec$(OBJ_EXT): embed.h
regexec$(OBJ_EXT): form.h
regexec$(OBJ_EXT): gv.h
regexec$(OBJ_EXT): handy.h
regexec$(OBJ_EXT): hv.h
regexec$(OBJ_EXT): mg.h
regexec$(OBJ_EXT): op.h
regexec$(OBJ_EXT): opcode.h
regexec$(OBJ_EXT): perl.h
regexec$(OBJ_EXT): perly.h
regexec$(OBJ_EXT): pp.h
regexec$(OBJ_EXT): proto.h
regexec$(OBJ_EXT): regcomp.h
regexec$(OBJ_EXT): regexec.c
regexec$(OBJ_EXT): regexp.h
regexec$(OBJ_EXT): scope.h
regexec$(OBJ_EXT): sv.h
regexec$(OBJ_EXT): unixish.h
regexec$(OBJ_EXT): util.h
gv$(OBJ_EXT): 
gv$(OBJ_EXT): /usr/include/_G_config.h
gv$(OBJ_EXT): /usr/include/alloca.h
gv$(OBJ_EXT): /usr/include/asm/errno.h
gv$(OBJ_EXT): /usr/include/asm/ioctl.h
gv$(OBJ_EXT): /usr/include/asm/ioctls.h
gv$(OBJ_EXT): /usr/include/asm/param.h
gv$(OBJ_EXT): /usr/include/asm/sigcontext.h
gv$(OBJ_EXT): /usr/include/asm/socket.h
gv$(OBJ_EXT): /usr/include/asm/sockios.h
gv$(OBJ_EXT): /usr/include/bits/byteswap.h
gv$(OBJ_EXT): /usr/include/bits/dirent.h
gv$(OBJ_EXT): /usr/include/bits/endian.h
gv$(OBJ_EXT): /usr/include/bits/errno.h
gv$(OBJ_EXT): /usr/include/bits/huge_val.h
gv$(OBJ_EXT): /usr/include/bits/in.h
gv$(OBJ_EXT): /usr/include/bits/ioctl-types.h
gv$(OBJ_EXT): /usr/include/bits/ioctls.h
gv$(OBJ_EXT): /usr/include/bits/local_lim.h
gv$(OBJ_EXT): /usr/include/bits/mathcalls.h
gv$(OBJ_EXT): /usr/include/bits/mathdef.h
gv$(OBJ_EXT): /usr/include/bits/posix1_lim.h
gv$(OBJ_EXT): /usr/include/bits/posix2_lim.h
gv$(OBJ_EXT): /usr/include/bits/select.h
gv$(OBJ_EXT): /usr/include/bits/setjmp.h
gv$(OBJ_EXT): /usr/include/bits/sigaction.h
gv$(OBJ_EXT): /usr/include/bits/sigcontext.h
gv$(OBJ_EXT): /usr/include/bits/siginfo.h
gv$(OBJ_EXT): /usr/include/bits/signum.h
gv$(OBJ_EXT): /usr/include/bits/sigset.h
gv$(OBJ_EXT): /usr/include/bits/sigstack.h
gv$(OBJ_EXT): /usr/include/bits/sockaddr.h
gv$(OBJ_EXT): /usr/include/bits/socket.h
gv$(OBJ_EXT): /usr/include/bits/stat.h
gv$(OBJ_EXT): /usr/include/bits/stdio_lim.h
gv$(OBJ_EXT): /usr/include/bits/time.h
gv$(OBJ_EXT): /usr/include/bits/types.h
gv$(OBJ_EXT): /usr/include/bits/wordsize.h
gv$(OBJ_EXT): /usr/include/ctype.h
gv$(OBJ_EXT): /usr/include/dirent.h
gv$(OBJ_EXT): /usr/include/endian.h
gv$(OBJ_EXT): /usr/include/errno.h
gv$(OBJ_EXT): /usr/include/features.h
gv$(OBJ_EXT): /usr/include/gnu/stubs.h
gv$(OBJ_EXT): /usr/include/libio.h
gv$(OBJ_EXT): /usr/include/limits.h
gv$(OBJ_EXT): /usr/include/linux/errno.h
gv$(OBJ_EXT): /usr/include/linux/limits.h
gv$(OBJ_EXT): /usr/include/linux/param.h
gv$(OBJ_EXT): /usr/include/locale.h
gv$(OBJ_EXT): /usr/include/math.h
gv$(OBJ_EXT): /usr/include/netinet/in.h
gv$(OBJ_EXT): /usr/include/setjmp.h
gv$(OBJ_EXT): /usr/include/signal.h
gv$(OBJ_EXT): /usr/include/stdint.h
gv$(OBJ_EXT): /usr/include/stdio.h
gv$(OBJ_EXT): /usr/include/stdlib.h
gv$(OBJ_EXT): /usr/include/string.h
gv$(OBJ_EXT): /usr/include/sys/cdefs.h
gv$(OBJ_EXT): /usr/include/sys/ioctl.h
gv$(OBJ_EXT): /usr/include/sys/param.h
gv$(OBJ_EXT): /usr/include/sys/select.h
gv$(OBJ_EXT): /usr/include/sys/stat.h
gv$(OBJ_EXT): /usr/include/sys/sysmacros.h
gv$(OBJ_EXT): /usr/include/sys/time.h
gv$(OBJ_EXT): /usr/include/sys/times.h
gv$(OBJ_EXT): /usr/include/sys/ttydefaults.h
gv$(OBJ_EXT): /usr/include/sys/types.h
gv$(OBJ_EXT): /usr/include/time.h
gv$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
gv$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
gv$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
gv$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
gv$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
gv$(OBJ_EXT): EXTERN.h
gv$(OBJ_EXT): av.h
gv$(OBJ_EXT): config.h
gv$(OBJ_EXT): cop.h
gv$(OBJ_EXT): cv.h
gv$(OBJ_EXT): embed.h
gv$(OBJ_EXT): form.h
gv$(OBJ_EXT): gv.c
gv$(OBJ_EXT): gv.h
gv$(OBJ_EXT): handy.h
gv$(OBJ_EXT): hv.h
gv$(OBJ_EXT): mg.h
gv$(OBJ_EXT): op.h
gv$(OBJ_EXT): opcode.h
gv$(OBJ_EXT): perl.h
gv$(OBJ_EXT): perly.h
gv$(OBJ_EXT): pp.h
gv$(OBJ_EXT): proto.h
gv$(OBJ_EXT): regexp.h
gv$(OBJ_EXT): scope.h
gv$(OBJ_EXT): sv.h
gv$(OBJ_EXT): unixish.h
gv$(OBJ_EXT): util.h
sv$(OBJ_EXT): 
sv$(OBJ_EXT): /usr/include/_G_config.h
sv$(OBJ_EXT): /usr/include/alloca.h
sv$(OBJ_EXT): /usr/include/asm/errno.h
sv$(OBJ_EXT): /usr/include/asm/ioctl.h
sv$(OBJ_EXT): /usr/include/asm/ioctls.h
sv$(OBJ_EXT): /usr/include/asm/param.h
sv$(OBJ_EXT): /usr/include/asm/sigcontext.h
sv$(OBJ_EXT): /usr/include/asm/socket.h
sv$(OBJ_EXT): /usr/include/asm/sockios.h
sv$(OBJ_EXT): /usr/include/bits/byteswap.h
sv$(OBJ_EXT): /usr/include/bits/dirent.h
sv$(OBJ_EXT): /usr/include/bits/endian.h
sv$(OBJ_EXT): /usr/include/bits/errno.h
sv$(OBJ_EXT): /usr/include/bits/huge_val.h
sv$(OBJ_EXT): /usr/include/bits/in.h
sv$(OBJ_EXT): /usr/include/bits/ioctl-types.h
sv$(OBJ_EXT): /usr/include/bits/ioctls.h
sv$(OBJ_EXT): /usr/include/bits/local_lim.h
sv$(OBJ_EXT): /usr/include/bits/mathcalls.h
sv$(OBJ_EXT): /usr/include/bits/mathdef.h
sv$(OBJ_EXT): /usr/include/bits/posix1_lim.h
sv$(OBJ_EXT): /usr/include/bits/posix2_lim.h
sv$(OBJ_EXT): /usr/include/bits/select.h
sv$(OBJ_EXT): /usr/include/bits/setjmp.h
sv$(OBJ_EXT): /usr/include/bits/sigaction.h
sv$(OBJ_EXT): /usr/include/bits/sigcontext.h
sv$(OBJ_EXT): /usr/include/bits/siginfo.h
sv$(OBJ_EXT): /usr/include/bits/signum.h
sv$(OBJ_EXT): /usr/include/bits/sigset.h
sv$(OBJ_EXT): /usr/include/bits/sigstack.h
sv$(OBJ_EXT): /usr/include/bits/sockaddr.h
sv$(OBJ_EXT): /usr/include/bits/socket.h
sv$(OBJ_EXT): /usr/include/bits/stat.h
sv$(OBJ_EXT): /usr/include/bits/stdio_lim.h
sv$(OBJ_EXT): /usr/include/bits/time.h
sv$(OBJ_EXT): /usr/include/bits/types.h
sv$(OBJ_EXT): /usr/include/bits/wordsize.h
sv$(OBJ_EXT): /usr/include/ctype.h
sv$(OBJ_EXT): /usr/include/dirent.h
sv$(OBJ_EXT): /usr/include/endian.h
sv$(OBJ_EXT): /usr/include/errno.h
sv$(OBJ_EXT): /usr/include/features.h
sv$(OBJ_EXT): /usr/include/gnu/stubs.h
sv$(OBJ_EXT): /usr/include/libio.h
sv$(OBJ_EXT): /usr/include/limits.h
sv$(OBJ_EXT): /usr/include/linux/errno.h
sv$(OBJ_EXT): /usr/include/linux/limits.h
sv$(OBJ_EXT): /usr/include/linux/param.h
sv$(OBJ_EXT): /usr/include/locale.h
sv$(OBJ_EXT): /usr/include/math.h
sv$(OBJ_EXT): /usr/include/netinet/in.h
sv$(OBJ_EXT): /usr/include/setjmp.h
sv$(OBJ_EXT): /usr/include/signal.h
sv$(OBJ_EXT): /usr/include/stdint.h
sv$(OBJ_EXT): /usr/include/stdio.h
sv$(OBJ_EXT): /usr/include/stdlib.h
sv$(OBJ_EXT): /usr/include/string.h
sv$(OBJ_EXT): /usr/include/sys/cdefs.h
sv$(OBJ_EXT): /usr/include/sys/ioctl.h
sv$(OBJ_EXT): /usr/include/sys/param.h
sv$(OBJ_EXT): /usr/include/sys/select.h
sv$(OBJ_EXT): /usr/include/sys/stat.h
sv$(OBJ_EXT): /usr/include/sys/sysmacros.h
sv$(OBJ_EXT): /usr/include/sys/time.h
sv$(OBJ_EXT): /usr/include/sys/times.h
sv$(OBJ_EXT): /usr/include/sys/ttydefaults.h
sv$(OBJ_EXT): /usr/include/sys/types.h
sv$(OBJ_EXT): /usr/include/time.h
sv$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
sv$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
sv$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
sv$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
sv$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
sv$(OBJ_EXT): EXTERN.h
sv$(OBJ_EXT): av.h
sv$(OBJ_EXT): config.h
sv$(OBJ_EXT): cop.h
sv$(OBJ_EXT): cv.h
sv$(OBJ_EXT): embed.h
sv$(OBJ_EXT): form.h
sv$(OBJ_EXT): gv.h
sv$(OBJ_EXT): handy.h
sv$(OBJ_EXT): hv.h
sv$(OBJ_EXT): mg.h
sv$(OBJ_EXT): op.h
sv$(OBJ_EXT): opcode.h
sv$(OBJ_EXT): perl.h
sv$(OBJ_EXT): perly.h
sv$(OBJ_EXT): pp.h
sv$(OBJ_EXT): proto.h
sv$(OBJ_EXT): regexp.h
sv$(OBJ_EXT): scope.h
sv$(OBJ_EXT): sv.c
sv$(OBJ_EXT): sv.h
sv$(OBJ_EXT): unixish.h
sv$(OBJ_EXT): util.h
taint$(OBJ_EXT): 
taint$(OBJ_EXT): /usr/include/_G_config.h
taint$(OBJ_EXT): /usr/include/alloca.h
taint$(OBJ_EXT): /usr/include/asm/errno.h
taint$(OBJ_EXT): /usr/include/asm/ioctl.h
taint$(OBJ_EXT): /usr/include/asm/ioctls.h
taint$(OBJ_EXT): /usr/include/asm/param.h
taint$(OBJ_EXT): /usr/include/asm/sigcontext.h
taint$(OBJ_EXT): /usr/include/asm/socket.h
taint$(OBJ_EXT): /usr/include/asm/sockios.h
taint$(OBJ_EXT): /usr/include/bits/byteswap.h
taint$(OBJ_EXT): /usr/include/bits/dirent.h
taint$(OBJ_EXT): /usr/include/bits/endian.h
taint$(OBJ_EXT): /usr/include/bits/errno.h
taint$(OBJ_EXT): /usr/include/bits/huge_val.h
taint$(OBJ_EXT): /usr/include/bits/in.h
taint$(OBJ_EXT): /usr/include/bits/ioctl-types.h
taint$(OBJ_EXT): /usr/include/bits/ioctls.h
taint$(OBJ_EXT): /usr/include/bits/local_lim.h
taint$(OBJ_EXT): /usr/include/bits/mathcalls.h
taint$(OBJ_EXT): /usr/include/bits/mathdef.h
taint$(OBJ_EXT): /usr/include/bits/posix1_lim.h
taint$(OBJ_EXT): /usr/include/bits/posix2_lim.h
taint$(OBJ_EXT): /usr/include/bits/select.h
taint$(OBJ_EXT): /usr/include/bits/setjmp.h
taint$(OBJ_EXT): /usr/include/bits/sigaction.h
taint$(OBJ_EXT): /usr/include/bits/sigcontext.h
taint$(OBJ_EXT): /usr/include/bits/siginfo.h
taint$(OBJ_EXT): /usr/include/bits/signum.h
taint$(OBJ_EXT): /usr/include/bits/sigset.h
taint$(OBJ_EXT): /usr/include/bits/sigstack.h
taint$(OBJ_EXT): /usr/include/bits/sockaddr.h
taint$(OBJ_EXT): /usr/include/bits/socket.h
taint$(OBJ_EXT): /usr/include/bits/stat.h
taint$(OBJ_EXT): /usr/include/bits/stdio_lim.h
taint$(OBJ_EXT): /usr/include/bits/time.h
taint$(OBJ_EXT): /usr/include/bits/types.h
taint$(OBJ_EXT): /usr/include/bits/wordsize.h
taint$(OBJ_EXT): /usr/include/ctype.h
taint$(OBJ_EXT): /usr/include/dirent.h
taint$(OBJ_EXT): /usr/include/endian.h
taint$(OBJ_EXT): /usr/include/errno.h
taint$(OBJ_EXT): /usr/include/features.h
taint$(OBJ_EXT): /usr/include/gnu/stubs.h
taint$(OBJ_EXT): /usr/include/libio.h
taint$(OBJ_EXT): /usr/include/limits.h
taint$(OBJ_EXT): /usr/include/linux/errno.h
taint$(OBJ_EXT): /usr/include/linux/limits.h
taint$(OBJ_EXT): /usr/include/linux/param.h
taint$(OBJ_EXT): /usr/include/locale.h
taint$(OBJ_EXT): /usr/include/math.h
taint$(OBJ_EXT): /usr/include/netinet/in.h
taint$(OBJ_EXT): /usr/include/setjmp.h
taint$(OBJ_EXT): /usr/include/signal.h
taint$(OBJ_EXT): /usr/include/stdint.h
taint$(OBJ_EXT): /usr/include/stdio.h
taint$(OBJ_EXT): /usr/include/stdlib.h
taint$(OBJ_EXT): /usr/include/string.h
taint$(OBJ_EXT): /usr/include/sys/cdefs.h
taint$(OBJ_EXT): /usr/include/sys/ioctl.h
taint$(OBJ_EXT): /usr/include/sys/param.h
taint$(OBJ_EXT): /usr/include/sys/select.h
taint$(OBJ_EXT): /usr/include/sys/stat.h
taint$(OBJ_EXT): /usr/include/sys/sysmacros.h
taint$(OBJ_EXT): /usr/include/sys/time.h
taint$(OBJ_EXT): /usr/include/sys/times.h
taint$(OBJ_EXT): /usr/include/sys/ttydefaults.h
taint$(OBJ_EXT): /usr/include/sys/types.h
taint$(OBJ_EXT): /usr/include/time.h
taint$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
taint$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
taint$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
taint$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
taint$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
taint$(OBJ_EXT): EXTERN.h
taint$(OBJ_EXT): av.h
taint$(OBJ_EXT): config.h
taint$(OBJ_EXT): cop.h
taint$(OBJ_EXT): cv.h
taint$(OBJ_EXT): embed.h
taint$(OBJ_EXT): form.h
taint$(OBJ_EXT): gv.h
taint$(OBJ_EXT): handy.h
taint$(OBJ_EXT): hv.h
taint$(OBJ_EXT): mg.h
taint$(OBJ_EXT): op.h
taint$(OBJ_EXT): opcode.h
taint$(OBJ_EXT): perl.h
taint$(OBJ_EXT): perly.h
taint$(OBJ_EXT): pp.h
taint$(OBJ_EXT): proto.h
taint$(OBJ_EXT): regexp.h
taint$(OBJ_EXT): scope.h
taint$(OBJ_EXT): sv.h
taint$(OBJ_EXT): taint.c
taint$(OBJ_EXT): unixish.h
taint$(OBJ_EXT): util.h
toke$(OBJ_EXT): 
toke$(OBJ_EXT): /usr/include/_G_config.h
toke$(OBJ_EXT): /usr/include/alloca.h
toke$(OBJ_EXT): /usr/include/asm/errno.h
toke$(OBJ_EXT): /usr/include/asm/ioctl.h
toke$(OBJ_EXT): /usr/include/asm/ioctls.h
toke$(OBJ_EXT): /usr/include/asm/param.h
toke$(OBJ_EXT): /usr/include/asm/sigcontext.h
toke$(OBJ_EXT): /usr/include/asm/socket.h
toke$(OBJ_EXT): /usr/include/asm/sockios.h
toke$(OBJ_EXT): /usr/include/bits/byteswap.h
toke$(OBJ_EXT): /usr/include/bits/dirent.h
toke$(OBJ_EXT): /usr/include/bits/endian.h
toke$(OBJ_EXT): /usr/include/bits/errno.h
toke$(OBJ_EXT): /usr/include/bits/fcntl.h
toke$(OBJ_EXT): /usr/include/bits/huge_val.h
toke$(OBJ_EXT): /usr/include/bits/in.h
toke$(OBJ_EXT): /usr/include/bits/ioctl-types.h
toke$(OBJ_EXT): /usr/include/bits/ioctls.h
toke$(OBJ_EXT): /usr/include/bits/local_lim.h
toke$(OBJ_EXT): /usr/include/bits/mathcalls.h
toke$(OBJ_EXT): /usr/include/bits/mathdef.h
toke$(OBJ_EXT): /usr/include/bits/posix1_lim.h
toke$(OBJ_EXT): /usr/include/bits/posix2_lim.h
toke$(OBJ_EXT): /usr/include/bits/select.h
toke$(OBJ_EXT): /usr/include/bits/setjmp.h
toke$(OBJ_EXT): /usr/include/bits/sigaction.h
toke$(OBJ_EXT): /usr/include/bits/sigcontext.h
toke$(OBJ_EXT): /usr/include/bits/siginfo.h
toke$(OBJ_EXT): /usr/include/bits/signum.h
toke$(OBJ_EXT): /usr/include/bits/sigset.h
toke$(OBJ_EXT): /usr/include/bits/sigstack.h
toke$(OBJ_EXT): /usr/include/bits/sockaddr.h
toke$(OBJ_EXT): /usr/include/bits/socket.h
toke$(OBJ_EXT): /usr/include/bits/stat.h
toke$(OBJ_EXT): /usr/include/bits/stdio_lim.h
toke$(OBJ_EXT): /usr/include/bits/time.h
toke$(OBJ_EXT): /usr/include/bits/types.h
toke$(OBJ_EXT): /usr/include/bits/wordsize.h
toke$(OBJ_EXT): /usr/include/ctype.h
toke$(OBJ_EXT): /usr/include/dirent.h
toke$(OBJ_EXT): /usr/include/endian.h
toke$(OBJ_EXT): /usr/include/errno.h
toke$(OBJ_EXT): /usr/include/fcntl.h
toke$(OBJ_EXT): /usr/include/features.h
toke$(OBJ_EXT): /usr/include/gnu/stubs.h
toke$(OBJ_EXT): /usr/include/libio.h
toke$(OBJ_EXT): /usr/include/limits.h
toke$(OBJ_EXT): /usr/include/linux/errno.h
toke$(OBJ_EXT): /usr/include/linux/limits.h
toke$(OBJ_EXT): /usr/include/linux/param.h
toke$(OBJ_EXT): /usr/include/locale.h
toke$(OBJ_EXT): /usr/include/math.h
toke$(OBJ_EXT): /usr/include/netinet/in.h
toke$(OBJ_EXT): /usr/include/setjmp.h
toke$(OBJ_EXT): /usr/include/signal.h
toke$(OBJ_EXT): /usr/include/stdint.h
toke$(OBJ_EXT): /usr/include/stdio.h
toke$(OBJ_EXT): /usr/include/stdlib.h
toke$(OBJ_EXT): /usr/include/string.h
toke$(OBJ_EXT): /usr/include/sys/cdefs.h
toke$(OBJ_EXT): /usr/include/sys/file.h
toke$(OBJ_EXT): /usr/include/sys/ioctl.h
toke$(OBJ_EXT): /usr/include/sys/param.h
toke$(OBJ_EXT): /usr/include/sys/select.h
toke$(OBJ_EXT): /usr/include/sys/stat.h
toke$(OBJ_EXT): /usr/include/sys/sysmacros.h
toke$(OBJ_EXT): /usr/include/sys/time.h
toke$(OBJ_EXT): /usr/include/sys/times.h
toke$(OBJ_EXT): /usr/include/sys/ttydefaults.h
toke$(OBJ_EXT): /usr/include/sys/types.h
toke$(OBJ_EXT): /usr/include/time.h
toke$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
toke$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
toke$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
toke$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
toke$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
toke$(OBJ_EXT): EXTERN.h
toke$(OBJ_EXT): av.h
toke$(OBJ_EXT): config.h
toke$(OBJ_EXT): cop.h
toke$(OBJ_EXT): cv.h
toke$(OBJ_EXT): embed.h
toke$(OBJ_EXT): form.h
toke$(OBJ_EXT): gv.h
toke$(OBJ_EXT): handy.h
toke$(OBJ_EXT): hv.h
toke$(OBJ_EXT): keywords.h
toke$(OBJ_EXT): mg.h
toke$(OBJ_EXT): op.h
toke$(OBJ_EXT): opcode.h
toke$(OBJ_EXT): perl.h
toke$(OBJ_EXT): perly.h
toke$(OBJ_EXT): pp.h
toke$(OBJ_EXT): proto.h
toke$(OBJ_EXT): regexp.h
toke$(OBJ_EXT): scope.h
toke$(OBJ_EXT): sv.h
toke$(OBJ_EXT): toke.c
toke$(OBJ_EXT): unixish.h
toke$(OBJ_EXT): util.h
util$(OBJ_EXT): 
util$(OBJ_EXT): /usr/include/_G_config.h
util$(OBJ_EXT): /usr/include/alloca.h
util$(OBJ_EXT): /usr/include/asm/errno.h
util$(OBJ_EXT): /usr/include/asm/ioctl.h
util$(OBJ_EXT): /usr/include/asm/ioctls.h
util$(OBJ_EXT): /usr/include/asm/param.h
util$(OBJ_EXT): /usr/include/asm/sigcontext.h
util$(OBJ_EXT): /usr/include/asm/socket.h
util$(OBJ_EXT): /usr/include/asm/sockios.h
util$(OBJ_EXT): /usr/include/bits/byteswap.h
util$(OBJ_EXT): /usr/include/bits/confname.h
util$(OBJ_EXT): /usr/include/bits/dirent.h
util$(OBJ_EXT): /usr/include/bits/endian.h
util$(OBJ_EXT): /usr/include/bits/errno.h
util$(OBJ_EXT): /usr/include/bits/fcntl.h
util$(OBJ_EXT): /usr/include/bits/huge_val.h
util$(OBJ_EXT): /usr/include/bits/in.h
util$(OBJ_EXT): /usr/include/bits/ioctl-types.h
util$(OBJ_EXT): /usr/include/bits/ioctls.h
util$(OBJ_EXT): /usr/include/bits/local_lim.h
util$(OBJ_EXT): /usr/include/bits/mathcalls.h
util$(OBJ_EXT): /usr/include/bits/mathdef.h
util$(OBJ_EXT): /usr/include/bits/posix1_lim.h
util$(OBJ_EXT): /usr/include/bits/posix2_lim.h
util$(OBJ_EXT): /usr/include/bits/posix_opt.h
util$(OBJ_EXT): /usr/include/bits/select.h
util$(OBJ_EXT): /usr/include/bits/setjmp.h
util$(OBJ_EXT): /usr/include/bits/sigaction.h
util$(OBJ_EXT): /usr/include/bits/sigcontext.h
util$(OBJ_EXT): /usr/include/bits/siginfo.h
util$(OBJ_EXT): /usr/include/bits/signum.h
util$(OBJ_EXT): /usr/include/bits/sigset.h
util$(OBJ_EXT): /usr/include/bits/sigstack.h
util$(OBJ_EXT): /usr/include/bits/sockaddr.h
util$(OBJ_EXT): /usr/include/bits/socket.h
util$(OBJ_EXT): /usr/include/bits/stat.h
util$(OBJ_EXT): /usr/include/bits/stdio_lim.h
util$(OBJ_EXT): /usr/include/bits/time.h
util$(OBJ_EXT): /usr/include/bits/types.h
util$(OBJ_EXT): /usr/include/bits/wordsize.h
util$(OBJ_EXT): /usr/include/ctype.h
util$(OBJ_EXT): /usr/include/dirent.h
util$(OBJ_EXT): /usr/include/endian.h
util$(OBJ_EXT): /usr/include/errno.h
util$(OBJ_EXT): /usr/include/fcntl.h
util$(OBJ_EXT): /usr/include/features.h
util$(OBJ_EXT): /usr/include/getopt.h
util$(OBJ_EXT): /usr/include/gnu/stubs.h
util$(OBJ_EXT): /usr/include/libio.h
util$(OBJ_EXT): /usr/include/limits.h
util$(OBJ_EXT): /usr/include/linux/errno.h
util$(OBJ_EXT): /usr/include/linux/limits.h
util$(OBJ_EXT): /usr/include/linux/param.h
util$(OBJ_EXT): /usr/include/locale.h
util$(OBJ_EXT): /usr/include/math.h
util$(OBJ_EXT): /usr/include/netinet/in.h
util$(OBJ_EXT): /usr/include/setjmp.h
util$(OBJ_EXT): /usr/include/signal.h
util$(OBJ_EXT): /usr/include/stdint.h
util$(OBJ_EXT): /usr/include/stdio.h
util$(OBJ_EXT): /usr/include/stdlib.h
util$(OBJ_EXT): /usr/include/string.h
util$(OBJ_EXT): /usr/include/sys/cdefs.h
util$(OBJ_EXT): /usr/include/sys/file.h
util$(OBJ_EXT): /usr/include/sys/ioctl.h
util$(OBJ_EXT): /usr/include/sys/param.h
util$(OBJ_EXT): /usr/include/sys/select.h
util$(OBJ_EXT): /usr/include/sys/stat.h
util$(OBJ_EXT): /usr/include/sys/sysmacros.h
util$(OBJ_EXT): /usr/include/sys/time.h
util$(OBJ_EXT): /usr/include/sys/times.h
util$(OBJ_EXT): /usr/include/sys/ttydefaults.h
util$(OBJ_EXT): /usr/include/sys/types.h
util$(OBJ_EXT): /usr/include/time.h
util$(OBJ_EXT): /usr/include/unistd.h
util$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
util$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
util$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
util$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
util$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
util$(OBJ_EXT): EXTERN.h
util$(OBJ_EXT): av.h
util$(OBJ_EXT): config.h
util$(OBJ_EXT): cop.h
util$(OBJ_EXT): cv.h
util$(OBJ_EXT): embed.h
util$(OBJ_EXT): form.h
util$(OBJ_EXT): gv.h
util$(OBJ_EXT): handy.h
util$(OBJ_EXT): hv.h
util$(OBJ_EXT): mg.h
util$(OBJ_EXT): op.h
util$(OBJ_EXT): opcode.h
util$(OBJ_EXT): perl.h
util$(OBJ_EXT): perly.h
util$(OBJ_EXT): pp.h
util$(OBJ_EXT): proto.h
util$(OBJ_EXT): regexp.h
util$(OBJ_EXT): scope.h
util$(OBJ_EXT): sv.h
util$(OBJ_EXT): unixish.h
util$(OBJ_EXT): util.c
util$(OBJ_EXT): util.h
deb$(OBJ_EXT): 
deb$(OBJ_EXT): /usr/include/_G_config.h
deb$(OBJ_EXT): /usr/include/alloca.h
deb$(OBJ_EXT): /usr/include/asm/errno.h
deb$(OBJ_EXT): /usr/include/asm/ioctl.h
deb$(OBJ_EXT): /usr/include/asm/ioctls.h
deb$(OBJ_EXT): /usr/include/asm/param.h
deb$(OBJ_EXT): /usr/include/asm/sigcontext.h
deb$(OBJ_EXT): /usr/include/asm/socket.h
deb$(OBJ_EXT): /usr/include/asm/sockios.h
deb$(OBJ_EXT): /usr/include/bits/byteswap.h
deb$(OBJ_EXT): /usr/include/bits/dirent.h
deb$(OBJ_EXT): /usr/include/bits/endian.h
deb$(OBJ_EXT): /usr/include/bits/errno.h
deb$(OBJ_EXT): /usr/include/bits/huge_val.h
deb$(OBJ_EXT): /usr/include/bits/in.h
deb$(OBJ_EXT): /usr/include/bits/ioctl-types.h
deb$(OBJ_EXT): /usr/include/bits/ioctls.h
deb$(OBJ_EXT): /usr/include/bits/local_lim.h
deb$(OBJ_EXT): /usr/include/bits/mathcalls.h
deb$(OBJ_EXT): /usr/include/bits/mathdef.h
deb$(OBJ_EXT): /usr/include/bits/posix1_lim.h
deb$(OBJ_EXT): /usr/include/bits/posix2_lim.h
deb$(OBJ_EXT): /usr/include/bits/select.h
deb$(OBJ_EXT): /usr/include/bits/setjmp.h
deb$(OBJ_EXT): /usr/include/bits/sigaction.h
deb$(OBJ_EXT): /usr/include/bits/sigcontext.h
deb$(OBJ_EXT): /usr/include/bits/siginfo.h
deb$(OBJ_EXT): /usr/include/bits/signum.h
deb$(OBJ_EXT): /usr/include/bits/sigset.h
deb$(OBJ_EXT): /usr/include/bits/sigstack.h
deb$(OBJ_EXT): /usr/include/bits/sockaddr.h
deb$(OBJ_EXT): /usr/include/bits/socket.h
deb$(OBJ_EXT): /usr/include/bits/stat.h
deb$(OBJ_EXT): /usr/include/bits/stdio_lim.h
deb$(OBJ_EXT): /usr/include/bits/time.h
deb$(OBJ_EXT): /usr/include/bits/types.h
deb$(OBJ_EXT): /usr/include/bits/wordsize.h
deb$(OBJ_EXT): /usr/include/ctype.h
deb$(OBJ_EXT): /usr/include/dirent.h
deb$(OBJ_EXT): /usr/include/endian.h
deb$(OBJ_EXT): /usr/include/errno.h
deb$(OBJ_EXT): /usr/include/features.h
deb$(OBJ_EXT): /usr/include/gnu/stubs.h
deb$(OBJ_EXT): /usr/include/libio.h
deb$(OBJ_EXT): /usr/include/limits.h
deb$(OBJ_EXT): /usr/include/linux/errno.h
deb$(OBJ_EXT): /usr/include/linux/limits.h
deb$(OBJ_EXT): /usr/include/linux/param.h
deb$(OBJ_EXT): /usr/include/locale.h
deb$(OBJ_EXT): /usr/include/math.h
deb$(OBJ_EXT): /usr/include/netinet/in.h
deb$(OBJ_EXT): /usr/include/setjmp.h
deb$(OBJ_EXT): /usr/include/signal.h
deb$(OBJ_EXT): /usr/include/stdint.h
deb$(OBJ_EXT): /usr/include/stdio.h
deb$(OBJ_EXT): /usr/include/stdlib.h
deb$(OBJ_EXT): /usr/include/string.h
deb$(OBJ_EXT): /usr/include/sys/cdefs.h
deb$(OBJ_EXT): /usr/include/sys/ioctl.h
deb$(OBJ_EXT): /usr/include/sys/param.h
deb$(OBJ_EXT): /usr/include/sys/select.h
deb$(OBJ_EXT): /usr/include/sys/stat.h
deb$(OBJ_EXT): /usr/include/sys/sysmacros.h
deb$(OBJ_EXT): /usr/include/sys/time.h
deb$(OBJ_EXT): /usr/include/sys/times.h
deb$(OBJ_EXT): /usr/include/sys/ttydefaults.h
deb$(OBJ_EXT): /usr/include/sys/types.h
deb$(OBJ_EXT): /usr/include/time.h
deb$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
deb$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
deb$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
deb$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
deb$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
deb$(OBJ_EXT): EXTERN.h
deb$(OBJ_EXT): av.h
deb$(OBJ_EXT): config.h
deb$(OBJ_EXT): cop.h
deb$(OBJ_EXT): cv.h
deb$(OBJ_EXT): deb.c
deb$(OBJ_EXT): embed.h
deb$(OBJ_EXT): form.h
deb$(OBJ_EXT): gv.h
deb$(OBJ_EXT): handy.h
deb$(OBJ_EXT): hv.h
deb$(OBJ_EXT): mg.h
deb$(OBJ_EXT): op.h
deb$(OBJ_EXT): opcode.h
deb$(OBJ_EXT): perl.h
deb$(OBJ_EXT): perly.h
deb$(OBJ_EXT): pp.h
deb$(OBJ_EXT): proto.h
deb$(OBJ_EXT): regexp.h
deb$(OBJ_EXT): scope.h
deb$(OBJ_EXT): sv.h
deb$(OBJ_EXT): unixish.h
deb$(OBJ_EXT): util.h
run$(OBJ_EXT): 
run$(OBJ_EXT): /usr/include/_G_config.h
run$(OBJ_EXT): /usr/include/alloca.h
run$(OBJ_EXT): /usr/include/asm/errno.h
run$(OBJ_EXT): /usr/include/asm/ioctl.h
run$(OBJ_EXT): /usr/include/asm/ioctls.h
run$(OBJ_EXT): /usr/include/asm/param.h
run$(OBJ_EXT): /usr/include/asm/sigcontext.h
run$(OBJ_EXT): /usr/include/asm/socket.h
run$(OBJ_EXT): /usr/include/asm/sockios.h
run$(OBJ_EXT): /usr/include/bits/byteswap.h
run$(OBJ_EXT): /usr/include/bits/dirent.h
run$(OBJ_EXT): /usr/include/bits/endian.h
run$(OBJ_EXT): /usr/include/bits/errno.h
run$(OBJ_EXT): /usr/include/bits/huge_val.h
run$(OBJ_EXT): /usr/include/bits/in.h
run$(OBJ_EXT): /usr/include/bits/ioctl-types.h
run$(OBJ_EXT): /usr/include/bits/ioctls.h
run$(OBJ_EXT): /usr/include/bits/local_lim.h
run$(OBJ_EXT): /usr/include/bits/mathcalls.h
run$(OBJ_EXT): /usr/include/bits/mathdef.h
run$(OBJ_EXT): /usr/include/bits/posix1_lim.h
run$(OBJ_EXT): /usr/include/bits/posix2_lim.h
run$(OBJ_EXT): /usr/include/bits/select.h
run$(OBJ_EXT): /usr/include/bits/setjmp.h
run$(OBJ_EXT): /usr/include/bits/sigaction.h
run$(OBJ_EXT): /usr/include/bits/sigcontext.h
run$(OBJ_EXT): /usr/include/bits/siginfo.h
run$(OBJ_EXT): /usr/include/bits/signum.h
run$(OBJ_EXT): /usr/include/bits/sigset.h
run$(OBJ_EXT): /usr/include/bits/sigstack.h
run$(OBJ_EXT): /usr/include/bits/sockaddr.h
run$(OBJ_EXT): /usr/include/bits/socket.h
run$(OBJ_EXT): /usr/include/bits/stat.h
run$(OBJ_EXT): /usr/include/bits/stdio_lim.h
run$(OBJ_EXT): /usr/include/bits/time.h
run$(OBJ_EXT): /usr/include/bits/types.h
run$(OBJ_EXT): /usr/include/bits/wordsize.h
run$(OBJ_EXT): /usr/include/ctype.h
run$(OBJ_EXT): /usr/include/dirent.h
run$(OBJ_EXT): /usr/include/endian.h
run$(OBJ_EXT): /usr/include/errno.h
run$(OBJ_EXT): /usr/include/features.h
run$(OBJ_EXT): /usr/include/gnu/stubs.h
run$(OBJ_EXT): /usr/include/libio.h
run$(OBJ_EXT): /usr/include/limits.h
run$(OBJ_EXT): /usr/include/linux/errno.h
run$(OBJ_EXT): /usr/include/linux/limits.h
run$(OBJ_EXT): /usr/include/linux/param.h
run$(OBJ_EXT): /usr/include/locale.h
run$(OBJ_EXT): /usr/include/math.h
run$(OBJ_EXT): /usr/include/netinet/in.h
run$(OBJ_EXT): /usr/include/setjmp.h
run$(OBJ_EXT): /usr/include/signal.h
run$(OBJ_EXT): /usr/include/stdint.h
run$(OBJ_EXT): /usr/include/stdio.h
run$(OBJ_EXT): /usr/include/stdlib.h
run$(OBJ_EXT): /usr/include/string.h
run$(OBJ_EXT): /usr/include/sys/cdefs.h
run$(OBJ_EXT): /usr/include/sys/ioctl.h
run$(OBJ_EXT): /usr/include/sys/param.h
run$(OBJ_EXT): /usr/include/sys/select.h
run$(OBJ_EXT): /usr/include/sys/stat.h
run$(OBJ_EXT): /usr/include/sys/sysmacros.h
run$(OBJ_EXT): /usr/include/sys/time.h
run$(OBJ_EXT): /usr/include/sys/times.h
run$(OBJ_EXT): /usr/include/sys/ttydefaults.h
run$(OBJ_EXT): /usr/include/sys/types.h
run$(OBJ_EXT): /usr/include/time.h
run$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
run$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
run$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
run$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
run$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
run$(OBJ_EXT): EXTERN.h
run$(OBJ_EXT): av.h
run$(OBJ_EXT): config.h
run$(OBJ_EXT): cop.h
run$(OBJ_EXT): cv.h
run$(OBJ_EXT): embed.h
run$(OBJ_EXT): form.h
run$(OBJ_EXT): gv.h
run$(OBJ_EXT): handy.h
run$(OBJ_EXT): hv.h
run$(OBJ_EXT): mg.h
run$(OBJ_EXT): op.h
run$(OBJ_EXT): opcode.h
run$(OBJ_EXT): perl.h
run$(OBJ_EXT): perly.h
run$(OBJ_EXT): pp.h
run$(OBJ_EXT): proto.h
run$(OBJ_EXT): regexp.h
run$(OBJ_EXT): run.c
run$(OBJ_EXT): scope.h
run$(OBJ_EXT): sv.h
run$(OBJ_EXT): unixish.h
run$(OBJ_EXT): util.h
globals$(OBJ_EXT): 
globals$(OBJ_EXT): /usr/include/_G_config.h
globals$(OBJ_EXT): /usr/include/alloca.h
globals$(OBJ_EXT): /usr/include/asm/errno.h
globals$(OBJ_EXT): /usr/include/asm/ioctl.h
globals$(OBJ_EXT): /usr/include/asm/ioctls.h
globals$(OBJ_EXT): /usr/include/asm/param.h
globals$(OBJ_EXT): /usr/include/asm/sigcontext.h
globals$(OBJ_EXT): /usr/include/asm/socket.h
globals$(OBJ_EXT): /usr/include/asm/sockios.h
globals$(OBJ_EXT): /usr/include/bits/byteswap.h
globals$(OBJ_EXT): /usr/include/bits/dirent.h
globals$(OBJ_EXT): /usr/include/bits/endian.h
globals$(OBJ_EXT): /usr/include/bits/errno.h
globals$(OBJ_EXT): /usr/include/bits/huge_val.h
globals$(OBJ_EXT): /usr/include/bits/in.h
globals$(OBJ_EXT): /usr/include/bits/ioctl-types.h
globals$(OBJ_EXT): /usr/include/bits/ioctls.h
globals$(OBJ_EXT): /usr/include/bits/local_lim.h
globals$(OBJ_EXT): /usr/include/bits/mathcalls.h
globals$(OBJ_EXT): /usr/include/bits/mathdef.h
globals$(OBJ_EXT): /usr/include/bits/posix1_lim.h
globals$(OBJ_EXT): /usr/include/bits/posix2_lim.h
globals$(OBJ_EXT): /usr/include/bits/select.h
globals$(OBJ_EXT): /usr/include/bits/setjmp.h
globals$(OBJ_EXT): /usr/include/bits/sigaction.h
globals$(OBJ_EXT): /usr/include/bits/sigcontext.h
globals$(OBJ_EXT): /usr/include/bits/siginfo.h
globals$(OBJ_EXT): /usr/include/bits/signum.h
globals$(OBJ_EXT): /usr/include/bits/sigset.h
globals$(OBJ_EXT): /usr/include/bits/sigstack.h
globals$(OBJ_EXT): /usr/include/bits/sockaddr.h
globals$(OBJ_EXT): /usr/include/bits/socket.h
globals$(OBJ_EXT): /usr/include/bits/stat.h
globals$(OBJ_EXT): /usr/include/bits/stdio_lim.h
globals$(OBJ_EXT): /usr/include/bits/time.h
globals$(OBJ_EXT): /usr/include/bits/types.h
globals$(OBJ_EXT): /usr/include/bits/wordsize.h
globals$(OBJ_EXT): /usr/include/ctype.h
globals$(OBJ_EXT): /usr/include/dirent.h
globals$(OBJ_EXT): /usr/include/endian.h
globals$(OBJ_EXT): /usr/include/errno.h
globals$(OBJ_EXT): /usr/include/features.h
globals$(OBJ_EXT): /usr/include/gnu/stubs.h
globals$(OBJ_EXT): /usr/include/libio.h
globals$(OBJ_EXT): /usr/include/limits.h
globals$(OBJ_EXT): /usr/include/linux/errno.h
globals$(OBJ_EXT): /usr/include/linux/limits.h
globals$(OBJ_EXT): /usr/include/linux/param.h
globals$(OBJ_EXT): /usr/include/locale.h
globals$(OBJ_EXT): /usr/include/math.h
globals$(OBJ_EXT): /usr/include/netinet/in.h
globals$(OBJ_EXT): /usr/include/setjmp.h
globals$(OBJ_EXT): /usr/include/signal.h
globals$(OBJ_EXT): /usr/include/stdint.h
globals$(OBJ_EXT): /usr/include/stdio.h
globals$(OBJ_EXT): /usr/include/stdlib.h
globals$(OBJ_EXT): /usr/include/string.h
globals$(OBJ_EXT): /usr/include/sys/cdefs.h
globals$(OBJ_EXT): /usr/include/sys/ioctl.h
globals$(OBJ_EXT): /usr/include/sys/param.h
globals$(OBJ_EXT): /usr/include/sys/select.h
globals$(OBJ_EXT): /usr/include/sys/stat.h
globals$(OBJ_EXT): /usr/include/sys/sysmacros.h
globals$(OBJ_EXT): /usr/include/sys/time.h
globals$(OBJ_EXT): /usr/include/sys/times.h
globals$(OBJ_EXT): /usr/include/sys/ttydefaults.h
globals$(OBJ_EXT): /usr/include/sys/types.h
globals$(OBJ_EXT): /usr/include/time.h
globals$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
globals$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
globals$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
globals$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
globals$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
globals$(OBJ_EXT): INTERN.h
globals$(OBJ_EXT): av.h
globals$(OBJ_EXT): config.h
globals$(OBJ_EXT): cop.h
globals$(OBJ_EXT): cv.h
globals$(OBJ_EXT): embed.h
globals$(OBJ_EXT): form.h
globals$(OBJ_EXT): globals.c
globals$(OBJ_EXT): gv.h
globals$(OBJ_EXT): handy.h
globals$(OBJ_EXT): hv.h
globals$(OBJ_EXT): mg.h
globals$(OBJ_EXT): op.h
globals$(OBJ_EXT): opcode.h
globals$(OBJ_EXT): perl.h
globals$(OBJ_EXT): perly.h
globals$(OBJ_EXT): pp.h
globals$(OBJ_EXT): proto.h
globals$(OBJ_EXT): regexp.h
globals$(OBJ_EXT): scope.h
globals$(OBJ_EXT): sv.h
globals$(OBJ_EXT): unixish.h
globals$(OBJ_EXT): util.h
miniperlmain$(OBJ_EXT): 
miniperlmain$(OBJ_EXT): /usr/include/_G_config.h
miniperlmain$(OBJ_EXT): /usr/include/alloca.h
miniperlmain$(OBJ_EXT): /usr/include/asm/errno.h
miniperlmain$(OBJ_EXT): /usr/include/asm/ioctl.h
miniperlmain$(OBJ_EXT): /usr/include/asm/ioctls.h
miniperlmain$(OBJ_EXT): /usr/include/asm/param.h
miniperlmain$(OBJ_EXT): /usr/include/asm/sigcontext.h
miniperlmain$(OBJ_EXT): /usr/include/asm/socket.h
miniperlmain$(OBJ_EXT): /usr/include/asm/sockios.h
miniperlmain$(OBJ_EXT): /usr/include/bits/byteswap.h
miniperlmain$(OBJ_EXT): /usr/include/bits/dirent.h
miniperlmain$(OBJ_EXT): /usr/include/bits/endian.h
miniperlmain$(OBJ_EXT): /usr/include/bits/errno.h
miniperlmain$(OBJ_EXT): /usr/include/bits/huge_val.h
miniperlmain$(OBJ_EXT): /usr/include/bits/in.h
miniperlmain$(OBJ_EXT): /usr/include/bits/ioctl-types.h
miniperlmain$(OBJ_EXT): /usr/include/bits/ioctls.h
miniperlmain$(OBJ_EXT): /usr/include/bits/local_lim.h
miniperlmain$(OBJ_EXT): /usr/include/bits/mathcalls.h
miniperlmain$(OBJ_EXT): /usr/include/bits/mathdef.h
miniperlmain$(OBJ_EXT): /usr/include/bits/posix1_lim.h
miniperlmain$(OBJ_EXT): /usr/include/bits/posix2_lim.h
miniperlmain$(OBJ_EXT): /usr/include/bits/select.h
miniperlmain$(OBJ_EXT): /usr/include/bits/setjmp.h
miniperlmain$(OBJ_EXT): /usr/include/bits/sigaction.h
miniperlmain$(OBJ_EXT): /usr/include/bits/sigcontext.h
miniperlmain$(OBJ_EXT): /usr/include/bits/siginfo.h
miniperlmain$(OBJ_EXT): /usr/include/bits/signum.h
miniperlmain$(OBJ_EXT): /usr/include/bits/sigset.h
miniperlmain$(OBJ_EXT): /usr/include/bits/sigstack.h
miniperlmain$(OBJ_EXT): /usr/include/bits/sockaddr.h
miniperlmain$(OBJ_EXT): /usr/include/bits/socket.h
miniperlmain$(OBJ_EXT): /usr/include/bits/stat.h
miniperlmain$(OBJ_EXT): /usr/include/bits/stdio_lim.h
miniperlmain$(OBJ_EXT): /usr/include/bits/time.h
miniperlmain$(OBJ_EXT): /usr/include/bits/types.h
miniperlmain$(OBJ_EXT): /usr/include/bits/wordsize.h
miniperlmain$(OBJ_EXT): /usr/include/ctype.h
miniperlmain$(OBJ_EXT): /usr/include/dirent.h
miniperlmain$(OBJ_EXT): /usr/include/endian.h
miniperlmain$(OBJ_EXT): /usr/include/errno.h
miniperlmain$(OBJ_EXT): /usr/include/features.h
miniperlmain$(OBJ_EXT): /usr/include/gnu/stubs.h
miniperlmain$(OBJ_EXT): /usr/include/libio.h
miniperlmain$(OBJ_EXT): /usr/include/limits.h
miniperlmain$(OBJ_EXT): /usr/include/linux/errno.h
miniperlmain$(OBJ_EXT): /usr/include/linux/limits.h
miniperlmain$(OBJ_EXT): /usr/include/linux/param.h
miniperlmain$(OBJ_EXT): /usr/include/locale.h
miniperlmain$(OBJ_EXT): /usr/include/math.h
miniperlmain$(OBJ_EXT): /usr/include/netinet/in.h
miniperlmain$(OBJ_EXT): /usr/include/setjmp.h
miniperlmain$(OBJ_EXT): /usr/include/signal.h
miniperlmain$(OBJ_EXT): /usr/include/stdint.h
miniperlmain$(OBJ_EXT): /usr/include/stdio.h
miniperlmain$(OBJ_EXT): /usr/include/stdlib.h
miniperlmain$(OBJ_EXT): /usr/include/string.h
miniperlmain$(OBJ_EXT): /usr/include/sys/cdefs.h
miniperlmain$(OBJ_EXT): /usr/include/sys/ioctl.h
miniperlmain$(OBJ_EXT): /usr/include/sys/param.h
miniperlmain$(OBJ_EXT): /usr/include/sys/select.h
miniperlmain$(OBJ_EXT): /usr/include/sys/stat.h
miniperlmain$(OBJ_EXT): /usr/include/sys/sysmacros.h
miniperlmain$(OBJ_EXT): /usr/include/sys/time.h
miniperlmain$(OBJ_EXT): /usr/include/sys/times.h
miniperlmain$(OBJ_EXT): /usr/include/sys/ttydefaults.h
miniperlmain$(OBJ_EXT): /usr/include/sys/types.h
miniperlmain$(OBJ_EXT): /usr/include/time.h
miniperlmain$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
miniperlmain$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
miniperlmain$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
miniperlmain$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
miniperlmain$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
miniperlmain$(OBJ_EXT): EXTERN.h
miniperlmain$(OBJ_EXT): av.h
miniperlmain$(OBJ_EXT): config.h
miniperlmain$(OBJ_EXT): cop.h
miniperlmain$(OBJ_EXT): cv.h
miniperlmain$(OBJ_EXT): embed.h
miniperlmain$(OBJ_EXT): form.h
miniperlmain$(OBJ_EXT): gv.h
miniperlmain$(OBJ_EXT): handy.h
miniperlmain$(OBJ_EXT): hv.h
miniperlmain$(OBJ_EXT): mg.h
miniperlmain$(OBJ_EXT): miniperlmain.c
miniperlmain$(OBJ_EXT): op.h
miniperlmain$(OBJ_EXT): opcode.h
miniperlmain$(OBJ_EXT): perl.h
miniperlmain$(OBJ_EXT): perly.h
miniperlmain$(OBJ_EXT): pp.h
miniperlmain$(OBJ_EXT): proto.h
miniperlmain$(OBJ_EXT): regexp.h
miniperlmain$(OBJ_EXT): scope.h
miniperlmain$(OBJ_EXT): sv.h
miniperlmain$(OBJ_EXT): unixish.h
miniperlmain$(OBJ_EXT): util.h
perlmain$(OBJ_EXT): 
perlmain$(OBJ_EXT): /usr/include/_G_config.h
perlmain$(OBJ_EXT): /usr/include/alloca.h
perlmain$(OBJ_EXT): /usr/include/asm/errno.h
perlmain$(OBJ_EXT): /usr/include/asm/ioctl.h
perlmain$(OBJ_EXT): /usr/include/asm/ioctls.h
perlmain$(OBJ_EXT): /usr/include/asm/param.h
perlmain$(OBJ_EXT): /usr/include/asm/sigcontext.h
perlmain$(OBJ_EXT): /usr/include/asm/socket.h
perlmain$(OBJ_EXT): /usr/include/asm/sockios.h
perlmain$(OBJ_EXT): /usr/include/bits/byteswap.h
perlmain$(OBJ_EXT): /usr/include/bits/dirent.h
perlmain$(OBJ_EXT): /usr/include/bits/endian.h
perlmain$(OBJ_EXT): /usr/include/bits/errno.h
perlmain$(OBJ_EXT): /usr/include/bits/huge_val.h
perlmain$(OBJ_EXT): /usr/include/bits/in.h
perlmain$(OBJ_EXT): /usr/include/bits/ioctl-types.h
perlmain$(OBJ_EXT): /usr/include/bits/ioctls.h
perlmain$(OBJ_EXT): /usr/include/bits/local_lim.h
perlmain$(OBJ_EXT): /usr/include/bits/mathcalls.h
perlmain$(OBJ_EXT): /usr/include/bits/mathdef.h
perlmain$(OBJ_EXT): /usr/include/bits/posix1_lim.h
perlmain$(OBJ_EXT): /usr/include/bits/posix2_lim.h
perlmain$(OBJ_EXT): /usr/include/bits/select.h
perlmain$(OBJ_EXT): /usr/include/bits/setjmp.h
perlmain$(OBJ_EXT): /usr/include/bits/sigaction.h
perlmain$(OBJ_EXT): /usr/include/bits/sigcontext.h
perlmain$(OBJ_EXT): /usr/include/bits/siginfo.h
perlmain$(OBJ_EXT): /usr/include/bits/signum.h
perlmain$(OBJ_EXT): /usr/include/bits/sigset.h
perlmain$(OBJ_EXT): /usr/include/bits/sigstack.h
perlmain$(OBJ_EXT): /usr/include/bits/sockaddr.h
perlmain$(OBJ_EXT): /usr/include/bits/socket.h
perlmain$(OBJ_EXT): /usr/include/bits/stat.h
perlmain$(OBJ_EXT): /usr/include/bits/stdio_lim.h
perlmain$(OBJ_EXT): /usr/include/bits/time.h
perlmain$(OBJ_EXT): /usr/include/bits/types.h
perlmain$(OBJ_EXT): /usr/include/bits/wordsize.h
perlmain$(OBJ_EXT): /usr/include/ctype.h
perlmain$(OBJ_EXT): /usr/include/dirent.h
perlmain$(OBJ_EXT): /usr/include/endian.h
perlmain$(OBJ_EXT): /usr/include/errno.h
perlmain$(OBJ_EXT): /usr/include/features.h
perlmain$(OBJ_EXT): /usr/include/gnu/stubs.h
perlmain$(OBJ_EXT): /usr/include/libio.h
perlmain$(OBJ_EXT): /usr/include/limits.h
perlmain$(OBJ_EXT): /usr/include/linux/errno.h
perlmain$(OBJ_EXT): /usr/include/linux/limits.h
perlmain$(OBJ_EXT): /usr/include/linux/param.h
perlmain$(OBJ_EXT): /usr/include/locale.h
perlmain$(OBJ_EXT): /usr/include/math.h
perlmain$(OBJ_EXT): /usr/include/netinet/in.h
perlmain$(OBJ_EXT): /usr/include/setjmp.h
perlmain$(OBJ_EXT): /usr/include/signal.h
perlmain$(OBJ_EXT): /usr/include/stdint.h
perlmain$(OBJ_EXT): /usr/include/stdio.h
perlmain$(OBJ_EXT): /usr/include/stdlib.h
perlmain$(OBJ_EXT): /usr/include/string.h
perlmain$(OBJ_EXT): /usr/include/sys/cdefs.h
perlmain$(OBJ_EXT): /usr/include/sys/ioctl.h
perlmain$(OBJ_EXT): /usr/include/sys/param.h
perlmain$(OBJ_EXT): /usr/include/sys/select.h
perlmain$(OBJ_EXT): /usr/include/sys/stat.h
perlmain$(OBJ_EXT): /usr/include/sys/sysmacros.h
perlmain$(OBJ_EXT): /usr/include/sys/time.h
perlmain$(OBJ_EXT): /usr/include/sys/times.h
perlmain$(OBJ_EXT): /usr/include/sys/ttydefaults.h
perlmain$(OBJ_EXT): /usr/include/sys/types.h
perlmain$(OBJ_EXT): /usr/include/time.h
perlmain$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/float.h
perlmain$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/limits.h
perlmain$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stdarg.h
perlmain$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/stddef.h
perlmain$(OBJ_EXT): /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.2/include/syslimits.h
perlmain$(OBJ_EXT): EXTERN.h
perlmain$(OBJ_EXT): av.h
perlmain$(OBJ_EXT): config.h
perlmain$(OBJ_EXT): cop.h
perlmain$(OBJ_EXT): cv.h
perlmain$(OBJ_EXT): embed.h
perlmain$(OBJ_EXT): form.h
perlmain$(OBJ_EXT): gv.h
perlmain$(OBJ_EXT): handy.h
perlmain$(OBJ_EXT): hv.h
perlmain$(OBJ_EXT): mg.h
perlmain$(OBJ_EXT): op.h
perlmain$(OBJ_EXT): opcode.h
perlmain$(OBJ_EXT): perl.h
perlmain$(OBJ_EXT): perlmain.c
perlmain$(OBJ_EXT): perly.h
perlmain$(OBJ_EXT): pp.h
perlmain$(OBJ_EXT): proto.h
perlmain$(OBJ_EXT): regexp.h
perlmain$(OBJ_EXT): scope.h
perlmain$(OBJ_EXT): sv.h
perlmain$(OBJ_EXT): unixish.h
perlmain$(OBJ_EXT): util.h
Makefile: Makefile.SH ./config.sh ; /bin/sh Makefile.SH
cflags: cflags.SH ./config.sh ; /bin/sh cflags.SH
config_h: config_h.SH ./config.sh ; /bin/sh config_h.SH
makeaperl: makeaperl.SH ./config.sh ; /bin/sh makeaperl.SH
makedir: makedir.SH ./config.sh ; /bin/sh makedir.SH
perl_exp: perl_exp.SH ./config.sh ; /bin/sh perl_exp.SH
writemain: writemain.SH ./config.sh ; /bin/sh writemain.SH
# WARNING: Put nothing here or make depend will gobble it up!
