ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
(Generate patch)

Comparing rxvt-unicode/src/Makefile.in (file contents):
Revision 1.26 by root, Wed Feb 16 20:32:05 2005 UTC vs.
Revision 1.75 by root, Fri Aug 18 23:03:31 2006 UTC

1@MCOMMON@ 1DATE=@DATE@
2 2VERSION=@VERSION@
3LINT = lint -DNARROWPROTO=1 $(XINC) -chapbxz 3RXVTNAME=@RXVTNAME@
4SHELL = /bin/sh
5prefix = @prefix@
6exec_prefix = @exec_prefix@
7bindir = @bindir@
8libdir = @libdir@
9includedir = @includedir@
10CC = @CC@
11CXX = @CXX@
12CPP = @CPP@
13MV = @MV@
14CP = @CP@
15LN = @LN@
16SED = @SED@
17ECHO = @ECHO@
18PERL = @PERL@
19INSTALL = @INSTALL@
20INSTALL_PROGRAM = @INSTALL@ -m 755
21INSTALL_DATA = @INSTALL@ -m 644
22CXXFLAGS = @CXXFLAGS@
23CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@
24LDFLAGS = @LDFLAGS@
25DEFS = @DEFS@
26LIBS = @LIBS@
27DINCLUDE = @DINCLUDE@
28DLIB = @DLIB@
29XINC = @X_CFLAGS@ @XPM_CFLAGS@
30XLIB = @X_LIBS@ @XPM_LIBS@ -lX11 @X_EXTRA_LIBS@
31COMPILE = $(CXX) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CXXFLAGS) $(DEBUG) $(DINCLUDE) $(XINC) -I$(basedir) -I$(srcdir) -I.
32LINK = @LINKER@ $(LDFLAGS)
4 33
5srcdir = @srcdir@ 34srcdir = @srcdir@
6VPATH = @srcdir@ 35VPATH = @srcdir@
7.PATH: @srcdir@ 36.PATH: @srcdir@
8 37
9top_builddir = .. 38top_builddir = ..
10basedir = .. 39basedir = ..
11thisdir = src 40thisdir = src
12MKDIR = @top_srcdir@/autoconf/mkinstalldirs
13 41
14# for developers: the following debug options may be used
15# -DDEBUG_CMD -DDEBUG_MAIN -DDEBUG_MENU -DDEBUG_MENUARROWS
16# -DDEBUG_MENUBAR_STACKING -DDEBUG_MENU_LAYOUT -DDEBUG_RESOURCES
17# -DDEBUG_SEARCH_PATH -DDEBUG_SIZE -DDEBUG_TTY -DDEBUG_TTYMODE
18# -DDEBUG_KEYBOARD
19DEBUG=-DDEBUG_STRICT @DEBUG@ 42DEBUG=-DDEBUG_STRICT
20 43
21first_rule: all 44first_rule: all
22dummy: 45dummy:
23 46
24COMMON = \ 47COMMON = \
25 command.o rxvtfont.o init.o logging.o \ 48 command.o rxvtfont.o init.o logging.o main.o misc.o netdisp.o \
26 main.o menubar.o misc.o netdisp.o ptytty.o screen.o \ 49 ptytty.o proxy.o screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \
27 scrollbar.o scrollbar-next.o scrollbar-rxvt.o scrollbar-xterm.o scrollbar-plain.o \ 50 scrollbar-xterm.o scrollbar-plain.o xdefaults.o xpm.o encoding.o \
28 strings.o xdefaults.o xpm.o encoding.o rxvttoolkit.o rxvtutil.o iom.o keyboard.o 51 rxvttoolkit.o rxvtutil.o iom.o keyboard.o fdpass.o @PERL_O@
52
53COMMON_DAEMON = rxvtdaemon.o
29 54
30RXVT_BASENAME=`$(ECHO) $(RXVTNAME)|$(SED) 's/$(EXEEXT)$$//'|$(SED) '$(transform)'` 55RXVT_BASENAME=`$(ECHO) $(RXVTNAME)|$(SED) 's/$(EXEEXT)$$//'|$(SED) '$(transform)'`
31RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)$(EXEEXT) 56RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)$(EXEEXT)
32RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)c$(EXEEXT) 57RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)c$(EXEEXT)
33RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)d$(EXEEXT) 58RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)d$(EXEEXT)
34RXVT_OLDNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)-old$(EXEEXT)
35 59
36# 60#
37# Distribution variables 61# Distribution variables
38# 62#
39 63
56#------------------------------------------------------------------------- 80#-------------------------------------------------------------------------
57 81
58all: allbin 82all: allbin
59 83
60rxvt: rxvt.o $(COMMON) 84rxvt: rxvt.o $(COMMON)
61 $(LINK) -o $@ $^ $(LIBS) $(XLIB) $(DLIB) 85 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) $(DLIB) @PERLLIB@
62# $(LIBTOOL) --mode=link $(LINK) rxvt.o librxvt.la $(LIBS) $(XLIB) $(DLIB) -o $@ 86# $(LIBTOOL) --mode=link $(LINK) rxvt.o librxvt.la $(LIBS) $(XLIB) $(DLIB) -o $@
63 87
64rxvtd: rxvtd.o rxvtdaemon.o $(COMMON) 88rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON)
65 $(LINK) -o $@ $^ $(LIBS) $(XLIB) $(DLIB) 89 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) $(DLIB) @PERLLIB@
66# $(LIBTOOL) --mode=link $(LINK) rxvtd.o rxvtdaemon.o librxvt.la $(LIBS) $(XLIB) $(DLIB) -o $@ 90# $(LIBTOOL) --mode=link $(LINK) rxvtd.o rxvtdaemon.o librxvt.la $(LIBS) $(XLIB) $(DLIB) -o $@
67 91
68rxvtc: rxvtc.o rxvtdaemon.o 92rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass.o
69 $(LINK) -o $@ $^ $(LIBS) $(DLIB) 93 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass.o $(LIBS) $(DLIB)
70# $(LIBTOOL) --mode=link $(LINK) rxvtc.o rxvtdaemon.o $(LIBS) $(DLIB) -o $@ 94# $(LIBTOOL) --mode=link $(LINK) rxvtc.o rxvtdaemon.o $(LIBS) $(DLIB) -o $@
71 95
72#librxvt.la: $(LIBOBJS) 96#librxvt.la: $(LIBOBJS)
73# $(LIBTOOL) --mode=link $(LINK) -rpath $(libdir) -version-info $(LIBVERSION) $(LIBOBJS) $(LIBS) -o $@ 97# $(LIBTOOL) --mode=link $(LINK) -rpath $(libdir) -version-info $(LIBVERSION) $(LIBOBJS) $(LIBS) -o $@
74 98
75#------------------------------------------------------------------------- 99#-------------------------------------------------------------------------
76 100
77tags: 101tags: *.[Ch]
78 ctags *.h *.C 102 ctags *.[Ch]
103
104TAGS: *.[Ch]
105 etags *.[Ch]
79 106
80allbin: rxvt rxvtd rxvtc 107allbin: rxvt rxvtd rxvtc
81 108
82alldoc: 109alldoc:
83 110
84clean: 111clean:
85 $(RMF) rxvt rxvtc rxvtd core a.out *.o *.lo *.bak *~ *.intpro .libs/* librxvt.la tmpproto *.tmp 112 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C
113 rm -f *.o *.lo .libs/* librxvt.la tmpproto *.tmp
86 114
87realclean: clean 115realclean: clean
88 $(RMF) tags librxvt.h 116 rm -f tags TAGS librxvt.h
89 117
90cleandir: realclean 118cleandir: realclean
91 119
92distclean: realclean 120distclean: realclean
93 (cd $(srcdir); $(RMF) Makefile) 121 (cd $(srcdir); rm -f Makefile)
94 122
123install-perl:
124@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)
125@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
126@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl
127@IF_PERL@ $(INSTALL_DATA) urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
128@IF_PERL@ for ext in perl/*; do test -f "$$ext" && $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/"$$ext"; done
129
95install: allbin alldoc 130install: allbin alldoc install-perl
96 $(MKDIR) $(DESTDIR)$(bindir) 131 $(INSTALL) -d $(DESTDIR)$(bindir)
97 $(RMF) $(RXVT_BINNAME)
98 $(RMF) $(RXVTC_BINNAME)
99 $(RMF) $(RXVTD_BINNAME)
100 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME) 132 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
101 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME) 133 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
102 $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME) 134 $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
103 135
104distdirs: 136perlxsi.c: Makefile
105 mkdir $(basedir)/../$(VERNAME)/$(thisdir) 137 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
106 138
107distcopy: $(INTPROS) 139rxvtperl.C: rxvtperl.xs typemap
108 $(CP) -p $(DIST) $(basedir)/../$(VERNAME)/$(thisdir) 140 $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -csuffix .C -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap -prototypes rxvtperl.xs >$@
141
142rxvtperl.o: rxvtperl.C perlxsi.c
143 $(COMPILE) @PERLFLAGS@ -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
109 144
110depend: 145depend:
111 makedepend -f Makefile.in -I. -Y *.C >/dev/null 2>&1
112 makedepend -f Makefile.in -I. -Y *.C -a -o .lo >/dev/null 2>&1 146 makedepend -f Makefile.in -I. -Y *.C -a -o .lo >/dev/null 2>&1
113 147
114# DO NOT DELETE: nice dependency list follows 148# DO NOT DELETE: nice dependency list follows
115 149
116command.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 150command.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
117command.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 151command.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
118command.o: salloc.h menubar.h version.h command.h keyboard.h 152command.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
153command.o: command.h keyboard.h
119encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h 154encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
120encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h 155encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
121encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h 156encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
122encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h 157encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
123encoding.o: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h 158encoding.o: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
129encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h 164encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
130encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h 165encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
131encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h 166encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
132encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h 167encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
133encoding.o: table/compose.h table/category.h 168encoding.o: table/compose.h table/category.h
169fdpass.o: ../config.h libptytty.h
134init.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h 170init.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
135init.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 171init.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
136init.o: menubar.h init.h 172init.o: libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
137iom.o: iom.h iom_conf.h rxvtutil.h callback.h 173iom.o: iom.h iom_conf.h rxvtutil.h callback.h
138keyboard.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 174keyboard.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
139keyboard.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 175keyboard.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
140keyboard.o: salloc.h menubar.h keyboard.h command.h 176keyboard.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
141logging.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 177keyboard.o: command.h
142logging.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 178logging.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
143logging.o: salloc.h menubar.h logging.h 179logging.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
180logging.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
144main.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h 181main.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
145main.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 182main.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
146main.o: menubar.h keyboard.h 183main.o: libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
147menubar.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
148menubar.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
149menubar.o: salloc.h menubar.h version.h
150misc.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h 184misc.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
151misc.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 185misc.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
152misc.o: menubar.h 186misc.o: libptytty.h rxvtperl.h hookinc.h rsinc.h
153netdisp.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 187netdisp.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
154netdisp.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 188netdisp.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
155netdisp.o: salloc.h menubar.h 189netdisp.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
156ptytty.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 190proxy.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
157ptytty.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 191proxy.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
158ptytty.o: salloc.h menubar.h 192proxy.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
193ptytty.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
194ptytty.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
195ptytty.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
159rxvt.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h 196rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
160rxvt.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 197rxvt.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
161rxvt.o: menubar.h 198rxvt.o: libptytty.h rxvtperl.h hookinc.h rsinc.h
162rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h rxvt.h rxvtlib.h ptytty.h 199rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
163rxvtc.o: feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h 200rxvtc.o: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
164rxvtc.o: callback.h salloc.h menubar.h 201rxvtc.o: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
165rxvtd.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 202rxvtd.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
166rxvtd.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 203rxvtd.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
167rxvtd.o: salloc.h menubar.h rxvtdaemon.h 204rxvtd.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
168rxvtdaemon.o: rxvtdaemon.h rxvtutil.h 205rxvtdaemon.o: rxvtdaemon.h rxvtutil.h
169rxvtfont.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 206rxvtfont.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
170rxvtfont.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 207rxvtfont.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
171rxvtfont.o: salloc.h menubar.h table/linedraw.h 208rxvtfont.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
209rxvtfont.o: table/linedraw.h
210rxvtperl.o: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
211rxvtperl.o: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
212rxvtperl.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
213rxvtperl.o: perlxsi.c
172rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 214rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
173rxvttoolkit.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 215rxvttoolkit.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
174rxvttoolkit.o: callback.h salloc.h menubar.h 216rxvttoolkit.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
175rxvtutil.o: rxvtutil.h 217rxvtutil.o: rxvtutil.h
176salloc.o: salloc.h 218salloc.o: salloc.h
177screen.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 219screen.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
178screen.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 220screen.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
179screen.o: salloc.h menubar.h salloc.C 221screen.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
180scrollbar-next.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 222scrollbar-next.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
181scrollbar-next.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 223scrollbar-next.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
182scrollbar-next.o: callback.h salloc.h menubar.h 224scrollbar-next.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
225scrollbar-next.o: rsinc.h
183scrollbar-plain.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 226scrollbar-plain.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
184scrollbar-plain.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 227scrollbar-plain.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
185scrollbar-plain.o: callback.h salloc.h menubar.h 228scrollbar-plain.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
229scrollbar-plain.o: rsinc.h
186scrollbar-rxvt.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 230scrollbar-rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
187scrollbar-rxvt.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 231scrollbar-rxvt.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
188scrollbar-rxvt.o: callback.h salloc.h menubar.h 232scrollbar-rxvt.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
233scrollbar-rxvt.o: rsinc.h
189scrollbar-xterm.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 234scrollbar-xterm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
190scrollbar-xterm.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 235scrollbar-xterm.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
191scrollbar-xterm.o: callback.h salloc.h menubar.h 236scrollbar-xterm.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
237scrollbar-xterm.o: rsinc.h
192scrollbar.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 238scrollbar.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
193scrollbar.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 239scrollbar.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
194scrollbar.o: salloc.h menubar.h 240scrollbar.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
195strings.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
196strings.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
197strings.o: salloc.h menubar.h
198xdefaults.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 241xdefaults.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
199xdefaults.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 242xdefaults.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
200xdefaults.o: salloc.h menubar.h version.h keyboard.h 243xdefaults.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
244xdefaults.o: keyboard.h
201xpm.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h 245xpm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
202xpm.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 246xpm.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
203xpm.o: menubar.h 247xpm.o: libptytty.h rxvtperl.h hookinc.h rsinc.h
204 248
205command.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 249command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
206command.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 250command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
207command.lo: salloc.h menubar.h version.h command.h keyboard.h 251command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
252command.lo: command.h keyboard.h
208encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h 253encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
209encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h 254encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
210encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h 255encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
211encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h 256encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
212encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h 257encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
218encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h 263encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
219encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h 264encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
220encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h 265encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
221encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h 266encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
222encoding.lo: table/compose.h table/category.h 267encoding.lo: table/compose.h table/category.h
268fdpass.lo: ../config.h libptytty.h
223init.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 269init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
224init.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 270init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
225init.lo: salloc.h menubar.h init.h 271init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
226iom.lo: iom.h iom_conf.h rxvtutil.h callback.h 272iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
227keyboard.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 273keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
228keyboard.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 274keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
229keyboard.lo: salloc.h menubar.h keyboard.h command.h 275keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
230logging.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 276keyboard.lo: command.h
231logging.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 277logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
232logging.lo: salloc.h menubar.h logging.h 278logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
279logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
233main.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 280main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
234main.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 281main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
235main.lo: salloc.h menubar.h keyboard.h 282main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
236menubar.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
237menubar.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
238menubar.lo: salloc.h menubar.h version.h
239misc.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 283misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
240misc.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 284misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
241misc.lo: salloc.h menubar.h 285misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
242netdisp.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 286netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
243netdisp.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 287netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
244netdisp.lo: salloc.h menubar.h 288netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
245ptytty.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 289proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
246ptytty.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 290proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
247ptytty.lo: salloc.h menubar.h 291proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
292ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
293ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
294ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
248rxvt.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 295rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
249rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 296rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
250rxvt.lo: salloc.h menubar.h 297rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
251rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h rxvt.h rxvtlib.h ptytty.h 298rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
252rxvtc.lo: feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h 299rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
253rxvtc.lo: callback.h salloc.h menubar.h 300rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
254rxvtd.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 301rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
255rxvtd.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 302rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
256rxvtd.lo: salloc.h menubar.h rxvtdaemon.h 303rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
257rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h 304rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
258rxvtfont.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 305rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
259rxvtfont.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 306rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
307rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
260rxvtfont.lo: salloc.h menubar.h table/linedraw.h 308rxvtfont.lo: table/linedraw.h
309rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
310rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
311rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
312rxvtperl.lo: perlxsi.c
261rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 313rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
262rxvttoolkit.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 314rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
263rxvttoolkit.lo: callback.h salloc.h menubar.h 315rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
264rxvtutil.lo: rxvtutil.h 316rxvtutil.lo: rxvtutil.h
265salloc.lo: salloc.h 317salloc.lo: salloc.h
266screen.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 318screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
267screen.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 319screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
268screen.lo: salloc.h menubar.h salloc.C 320screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
269scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 321scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
270scrollbar-next.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 322scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
271scrollbar-next.lo: callback.h salloc.h menubar.h 323scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
324scrollbar-next.lo: rsinc.h
272scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h 325scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
273scrollbar-plain.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h 326scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
274scrollbar-plain.lo: iom_conf.h callback.h salloc.h menubar.h 327scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
328scrollbar-plain.lo: hookinc.h rsinc.h
275scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 329scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
276scrollbar-rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 330scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
277scrollbar-rxvt.lo: callback.h salloc.h menubar.h 331scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
332scrollbar-rxvt.lo: rsinc.h
278scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h 333scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
279scrollbar-xterm.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h 334scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
280scrollbar-xterm.lo: iom_conf.h callback.h salloc.h menubar.h 335scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
336scrollbar-xterm.lo: hookinc.h rsinc.h
281scrollbar.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 337scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
282scrollbar.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 338scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
283scrollbar.lo: salloc.h menubar.h 339scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
284strings.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
285strings.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
286strings.lo: salloc.h menubar.h
287xdefaults.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 340xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
288xdefaults.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 341xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
289xdefaults.lo: salloc.h menubar.h version.h keyboard.h 342xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
343xdefaults.lo: keyboard.h
290xpm.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h 344xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
291xpm.lo: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 345xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
292xpm.lo: menubar.h 346xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h
347
348command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
349command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
350command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
351command.lo: command.h keyboard.h
352encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
353encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
354encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
355encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
356encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
357encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
358encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
359encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
360encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
361encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
362encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
363encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
364encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
365encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
366encoding.lo: table/compose.h table/category.h
367fdpass.lo: ../config.h libptytty.h
368init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
369init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
370init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
371iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
372keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
373keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
374keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
375keyboard.lo: command.h
376logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
377logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
378logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
379main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
380main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
381main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
382misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
383misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
384misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
385netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
386netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
387netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
388proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
389proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
390proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
391ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
392ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
393ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
394rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
395rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
396rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
397rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
398rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
399rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
400rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
401rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
402rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
403rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
404rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
405rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
406rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
407rxvtfont.lo: table/linedraw.h
408rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
409rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
410rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
411rxvtperl.lo: perlxsi.c
412rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
413rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
414rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
415rxvtutil.lo: rxvtutil.h
416salloc.lo: salloc.h
417screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
418screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
419screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
420scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
421scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
422scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
423scrollbar-next.lo: rsinc.h
424scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
425scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
426scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
427scrollbar-plain.lo: hookinc.h rsinc.h
428scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
429scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
430scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
431scrollbar-rxvt.lo: rsinc.h
432scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
433scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
434scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
435scrollbar-xterm.lo: hookinc.h rsinc.h
436scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
437scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
438scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
439xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
440xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
441xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
442xdefaults.lo: keyboard.h
443xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
444xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
445xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h
446
447command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
448command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
449command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
450command.lo: command.h keyboard.h
451encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
452encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
453encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
454encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
455encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
456encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
457encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
458encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
459encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
460encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
461encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
462encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
463encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
464encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
465encoding.lo: table/compose.h table/category.h
466fdpass.lo: ../config.h libptytty.h
467init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
468init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
469init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
470iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
471keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
472keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
473keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
474keyboard.lo: command.h
475logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
476logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
477logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
478main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
479main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
480main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
481misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
482misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
483misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
484netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
485netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
486netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
487proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
488proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
489proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
490ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
491ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
492ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
493rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
494rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
495rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
496rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
497rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
498rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
499rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
500rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
501rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
502rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
503rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
504rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
505rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
506rxvtfont.lo: table/linedraw.h
507rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
508rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
509rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
510rxvtperl.lo: perlxsi.c
511rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
512rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
513rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
514rxvtutil.lo: rxvtutil.h
515salloc.lo: salloc.h
516screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
517screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
518screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
519scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
520scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
521scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
522scrollbar-next.lo: rsinc.h
523scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
524scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
525scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
526scrollbar-plain.lo: hookinc.h rsinc.h
527scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
528scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
529scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
530scrollbar-rxvt.lo: rsinc.h
531scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
532scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
533scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
534scrollbar-xterm.lo: hookinc.h rsinc.h
535scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
536scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
537scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
538xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
539xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
540xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
541xdefaults.lo: keyboard.h
542xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
543xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
544xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h
545
546command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
547command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
548command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
549command.lo: command.h keyboard.h
550encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
551encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
552encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
553encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
554encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
555encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
556encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
557encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
558encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
559encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
560encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
561encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
562encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
563encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
564encoding.lo: table/compose.h table/category.h
565fdpass.lo: ../config.h libptytty.h
566init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
567init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
568init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
569iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
570keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
571keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
572keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
573keyboard.lo: command.h
574logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
575logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
576logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
577main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
578main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
579main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
580misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
581misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
582misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
583netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
584netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
585netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
586proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
587proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
588proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
589ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
590ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
591ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
592rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
593rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
594rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
595rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
596rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
597rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
598rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
599rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
600rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
601rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
602rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
603rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
604rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
605rxvtfont.lo: table/linedraw.h
606rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
607rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
608rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
609rxvtperl.lo: perlxsi.c
610rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
611rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
612rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
613rxvtutil.lo: rxvtutil.h
614salloc.lo: salloc.h
615screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
616screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
617screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
618scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
619scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
620scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
621scrollbar-next.lo: rsinc.h
622scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
623scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
624scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
625scrollbar-plain.lo: hookinc.h rsinc.h
626scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
627scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
628scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
629scrollbar-rxvt.lo: rsinc.h
630scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
631scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
632scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
633scrollbar-xterm.lo: hookinc.h rsinc.h
634scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
635scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
636scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
637xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
638xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
639xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
640xdefaults.lo: keyboard.h
641xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
642xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
643xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h
644
645command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
646command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
647command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
648command.lo: command.h keyboard.h
649encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
650encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
651encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
652encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
653encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
654encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
655encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
656encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
657encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
658encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
659encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
660encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
661encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
662encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
663encoding.lo: table/compose.h table/category.h
664fdpass.lo: ../config.h libptytty.h
665init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
666init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
667init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
668iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
669keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
670keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
671keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
672keyboard.lo: command.h
673logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
674logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
675logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
676main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
677main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
678main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
679misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
680misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
681misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
682netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
683netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
684netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
685proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
686proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
687proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
688ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
689ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
690ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
691rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
692rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
693rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
694rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
695rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
696rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
697rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
698rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
699rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
700rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
701rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
702rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
703rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
704rxvtfont.lo: table/linedraw.h
705rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
706rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
707rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
708rxvtperl.lo: perlxsi.c
709rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
710rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
711rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
712rxvtutil.lo: rxvtutil.h
713salloc.lo: salloc.h
714screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
715screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
716screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
717scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
718scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
719scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
720scrollbar-next.lo: rsinc.h
721scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
722scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
723scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
724scrollbar-plain.lo: hookinc.h rsinc.h
725scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
726scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
727scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
728scrollbar-rxvt.lo: rsinc.h
729scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
730scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
731scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
732scrollbar-xterm.lo: hookinc.h rsinc.h
733scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
734scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
735scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
736xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
737xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
738xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
739xdefaults.lo: keyboard.h
740xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
741xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
742xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h
743
744command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
745command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
746command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
747command.lo: command.h keyboard.h
748encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
749encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
750encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
751encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
752encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
753encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
754encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
755encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
756encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
757encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
758encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
759encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
760encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
761encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
762encoding.lo: table/compose.h table/category.h
763fdpass.lo: ../config.h libptytty.h
764init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
765init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
766init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
767iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
768keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
769keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
770keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
771keyboard.lo: command.h
772logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
773logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
774logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
775main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
776main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
777main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
778misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
779misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
780misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
781netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
782netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
783netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
784proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
785proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
786proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
787ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
788ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
789ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
790rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
791rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
792rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
793rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
794rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
795rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
796rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
797rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
798rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
799rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
800rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
801rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
802rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
803rxvtfont.lo: table/linedraw.h
804rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
805rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
806rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
807rxvtperl.lo: perlxsi.c
808rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
809rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
810rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
811rxvtutil.lo: rxvtutil.h
812salloc.lo: salloc.h
813screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
814screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
815screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
816scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
817scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
818scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
819scrollbar-next.lo: rsinc.h
820scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
821scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
822scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
823scrollbar-plain.lo: hookinc.h rsinc.h
824scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
825scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
826scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
827scrollbar-rxvt.lo: rsinc.h
828scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
829scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
830scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
831scrollbar-xterm.lo: hookinc.h rsinc.h
832scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
833scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
834scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
835xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
836xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
837xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
838xdefaults.lo: keyboard.h
839xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
840xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
841xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h
842
843command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
844command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
845command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
846command.lo: command.h keyboard.h
847encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
848encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
849encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
850encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
851encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
852encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
853encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
854encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
855encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
856encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
857encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
858encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
859encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
860encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
861encoding.lo: table/compose.h table/category.h
862fdpass.lo: ../config.h libptytty.h
863init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
864init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
865init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
866iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
867keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
868keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
869keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
870keyboard.lo: command.h
871logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
872logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
873logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
874main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
875main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
876main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
877misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
878misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
879misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
880netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
881netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
882netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
883proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
884proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
885proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
886ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
887ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
888ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
889rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
890rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
891rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
892rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
893rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
894rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
895rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
896rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
897rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
898rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
899rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
900rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
901rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
902rxvtfont.lo: table/linedraw.h
903rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
904rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
905rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
906rxvtperl.lo: perlxsi.c
907rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
908rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
909rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
910rxvtutil.lo: rxvtutil.h
911salloc.lo: salloc.h
912screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
913screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
914screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
915scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
916scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
917scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
918scrollbar-next.lo: rsinc.h
919scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
920scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
921scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
922scrollbar-plain.lo: hookinc.h rsinc.h
923scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
924scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
925scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
926scrollbar-rxvt.lo: rsinc.h
927scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
928scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
929scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
930scrollbar-xterm.lo: hookinc.h rsinc.h
931scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
932scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
933scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
934xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
935xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
936xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
937xdefaults.lo: keyboard.h
938xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
939xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
940xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h
941
942command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
943command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
944command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
945command.lo: command.h keyboard.h
946encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
947encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
948encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
949encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
950encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
951encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
952encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
953encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
954encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
955encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
956encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
957encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
958encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
959encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
960encoding.lo: table/compose.h table/category.h
961fdpass.lo: ../config.h libptytty.h
962init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
963init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
964init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
965iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
966keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
967keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
968keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
969keyboard.lo: command.h
970logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
971logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
972logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
973main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
974main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
975main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
976misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
977misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
978misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
979netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
980netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
981netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
982proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
983proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
984proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
985ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
986ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
987ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
988rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
989rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
990rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
991rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
992rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
993rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
994rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
995rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
996rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
997rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
998rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
999rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1000rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1001rxvtfont.lo: table/linedraw.h
1002rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
1003rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
1004rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
1005rxvtperl.lo: perlxsi.c
1006rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1007rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
1008rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1009rxvtutil.lo: rxvtutil.h
1010salloc.lo: salloc.h
1011screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1012screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1013screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
1014scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1015scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
1016scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
1017scrollbar-next.lo: rsinc.h
1018scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
1019scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
1020scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
1021scrollbar-plain.lo: hookinc.h rsinc.h
1022scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1023scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
1024scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
1025scrollbar-rxvt.lo: rsinc.h
1026scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
1027scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
1028scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
1029scrollbar-xterm.lo: hookinc.h rsinc.h
1030scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1031scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1032scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1033xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1034xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1035xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
1036xdefaults.lo: keyboard.h
1037xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
1038xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
1039xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h
1040
1041command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1042command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1043command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
1044command.lo: command.h keyboard.h
1045encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
1046encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
1047encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
1048encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
1049encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
1050encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
1051encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
1052encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
1053encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
1054encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
1055encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
1056encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
1057encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
1058encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
1059encoding.lo: table/compose.h table/category.h
1060fdpass.lo: ../config.h libptytty.h
1061init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1062init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1063init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
1064iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
1065keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1066keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1067keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
1068keyboard.lo: command.h
1069logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
1070logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
1071logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1072main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1073main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1074main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
1075misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1076misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1077misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1078netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1079netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1080netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1081proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
1082proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
1083proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1084ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
1085ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
1086ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1087rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1088rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1089rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1090rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
1091rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
1092rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1093rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1094rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1095rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
1096rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
1097rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1098rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1099rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1100rxvtfont.lo: table/linedraw.h
1101rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
1102rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
1103rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
1104rxvtperl.lo: perlxsi.c
1105rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1106rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
1107rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1108rxvtutil.lo: rxvtutil.h
1109salloc.lo: salloc.h
1110screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1111screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1112screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
1113scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1114scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
1115scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
1116scrollbar-next.lo: rsinc.h
1117scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
1118scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
1119scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
1120scrollbar-plain.lo: hookinc.h rsinc.h
1121scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1122scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
1123scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
1124scrollbar-rxvt.lo: rsinc.h
1125scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
1126scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
1127scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
1128scrollbar-xterm.lo: hookinc.h rsinc.h
1129scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1130scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1131scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1132xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1133xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1134xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
1135xdefaults.lo: keyboard.h
1136xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
1137xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
1138xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h
1139
1140command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1141command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1142command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
1143command.lo: command.h keyboard.h
1144encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
1145encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
1146encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
1147encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
1148encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
1149encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
1150encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
1151encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
1152encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
1153encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
1154encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
1155encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
1156encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
1157encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
1158encoding.lo: table/compose.h table/category.h
1159fdpass.lo: ../config.h libptytty.h
1160init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1161init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1162init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
1163iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
1164keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1165keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1166keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
1167keyboard.lo: command.h
1168logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
1169logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
1170logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1171main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1172main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1173main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
1174misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1175misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1176misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1177netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1178netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1179netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1180proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
1181proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
1182proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1183ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
1184ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
1185ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1186rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1187rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1188rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1189rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
1190rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
1191rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1192rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1193rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1194rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
1195rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
1196rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1197rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1198rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1199rxvtfont.lo: table/linedraw.h
1200rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
1201rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
1202rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
1203rxvtperl.lo: perlxsi.c
1204rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1205rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
1206rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1207rxvtutil.lo: rxvtutil.h
1208salloc.lo: salloc.h
1209screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1210screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1211screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
1212scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1213scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
1214scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
1215scrollbar-next.lo: rsinc.h
1216scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
1217scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
1218scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
1219scrollbar-plain.lo: hookinc.h rsinc.h
1220scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1221scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
1222scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
1223scrollbar-rxvt.lo: rsinc.h
1224scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
1225scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
1226scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
1227scrollbar-xterm.lo: hookinc.h rsinc.h
1228scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1229scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1230scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1231xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1232xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1233xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
1234xdefaults.lo: keyboard.h
1235xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
1236xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
1237xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h
1238
1239command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1240command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1241command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
1242command.lo: command.h keyboard.h
1243encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
1244encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
1245encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
1246encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
1247encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
1248encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
1249encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
1250encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
1251encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
1252encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
1253encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
1254encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
1255encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
1256encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
1257encoding.lo: table/compose.h table/category.h
1258fdpass.lo: ../config.h libptytty.h
1259init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1260init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1261init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
1262iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
1263keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1264keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1265keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
1266keyboard.lo: command.h
1267logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
1268logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
1269logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1270main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1271main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1272main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
1273misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1274misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1275misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1276netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1277netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1278netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1279proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
1280proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
1281proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1282ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
1283ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
1284ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1285rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1286rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1287rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1288rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
1289rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
1290rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1291rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1292rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1293rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
1294rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
1295rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1296rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1297rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1298rxvtfont.lo: table/linedraw.h
1299rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
1300rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
1301rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
1302rxvtperl.lo: perlxsi.c
1303rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1304rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
1305rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1306rxvtutil.lo: rxvtutil.h
1307salloc.lo: salloc.h
1308screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1309screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1310screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
1311scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1312scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
1313scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
1314scrollbar-next.lo: rsinc.h
1315scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
1316scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
1317scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
1318scrollbar-plain.lo: hookinc.h rsinc.h
1319scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1320scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
1321scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
1322scrollbar-rxvt.lo: rsinc.h
1323scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
1324scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
1325scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
1326scrollbar-xterm.lo: hookinc.h rsinc.h
1327scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1328scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1329scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1330xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1331xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1332xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
1333xdefaults.lo: keyboard.h
1334xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
1335xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
1336xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h
1337
1338command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1339command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1340command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
1341command.lo: command.h keyboard.h
1342encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
1343encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
1344encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
1345encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
1346encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
1347encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
1348encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
1349encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
1350encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
1351encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
1352encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
1353encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
1354encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
1355encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
1356encoding.lo: table/compose.h table/category.h
1357fdpass.lo: ../config.h libptytty.h
1358init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1359init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1360init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
1361iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
1362keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1363keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1364keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
1365keyboard.lo: command.h
1366logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
1367logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
1368logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1369main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1370main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1371main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
1372misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1373misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1374misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1375netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1376netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1377netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1378proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
1379proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
1380proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1381ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
1382ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
1383ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1384rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1385rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1386rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1387rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
1388rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
1389rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1390rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1391rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1392rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
1393rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
1394rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1395rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1396rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1397rxvtfont.lo: table/linedraw.h
1398rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
1399rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
1400rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
1401rxvtperl.lo: perlxsi.c
1402rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1403rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
1404rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1405rxvtutil.lo: rxvtutil.h
1406salloc.lo: salloc.h
1407screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1408screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1409screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
1410scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1411scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
1412scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
1413scrollbar-next.lo: rsinc.h
1414scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
1415scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
1416scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
1417scrollbar-plain.lo: hookinc.h rsinc.h
1418scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1419scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
1420scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
1421scrollbar-rxvt.lo: rsinc.h
1422scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
1423scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
1424scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
1425scrollbar-xterm.lo: hookinc.h rsinc.h
1426scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1427scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1428scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1429xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1430xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1431xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
1432xdefaults.lo: keyboard.h
1433xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
1434xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
1435xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h
1436
1437command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1438command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1439command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
1440command.lo: command.h keyboard.h
1441encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
1442encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
1443encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
1444encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
1445encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
1446encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
1447encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
1448encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
1449encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
1450encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
1451encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
1452encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
1453encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
1454encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
1455encoding.lo: table/compose.h table/category.h
1456fdpass.lo: ../config.h libptytty.h
1457init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1458init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1459init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
1460iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
1461keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1462keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1463keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
1464keyboard.lo: command.h
1465logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
1466logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
1467logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1468main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1469main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1470main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
1471misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1472misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1473misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1474netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1475netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1476netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1477proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
1478proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
1479proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1480ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
1481ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
1482ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1483rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1484rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1485rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1486rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
1487rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
1488rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1489rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1490rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1491rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
1492rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
1493rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1494rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1495rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1496rxvtfont.lo: table/linedraw.h
1497rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
1498rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
1499rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
1500rxvtperl.lo: perlxsi.c
1501rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1502rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
1503rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1504rxvtutil.lo: rxvtutil.h
1505salloc.lo: salloc.h
1506screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1507screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1508screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
1509scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1510scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
1511scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
1512scrollbar-next.lo: rsinc.h
1513scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
1514scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
1515scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
1516scrollbar-plain.lo: hookinc.h rsinc.h
1517scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1518scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
1519scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
1520scrollbar-rxvt.lo: rsinc.h
1521scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
1522scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
1523scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
1524scrollbar-xterm.lo: hookinc.h rsinc.h
1525scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1526scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1527scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1528xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1529xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1530xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
1531xdefaults.lo: keyboard.h
1532xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
1533xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
1534xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h
1535
1536command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1537command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1538command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
1539command.lo: command.h keyboard.h
1540encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
1541encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
1542encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
1543encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
1544encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
1545encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
1546encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
1547encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
1548encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
1549encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
1550encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
1551encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
1552encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
1553encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
1554encoding.lo: table/compose.h table/category.h
1555fdpass.lo: ../config.h libptytty.h
1556init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1557init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1558init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
1559iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
1560keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1561keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1562keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
1563keyboard.lo: command.h
1564logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
1565logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
1566logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1567main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1568main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1569main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
1570misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1571misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1572misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1573netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1574netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1575netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1576proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
1577proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
1578proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1579ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
1580ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
1581ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1582rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1583rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1584rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1585rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
1586rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
1587rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
1588rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1589rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1590rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
1591rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
1592rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1593rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1594rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1595rxvtfont.lo: table/linedraw.h
1596rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
1597rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
1598rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
1599rxvtperl.lo: perlxsi.c
1600rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1601rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
1602rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1603rxvtutil.lo: rxvtutil.h
1604salloc.lo: salloc.h
1605screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1606screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1607screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
1608scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1609scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
1610scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
1611scrollbar-next.lo: rsinc.h
1612scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
1613scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
1614scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
1615scrollbar-plain.lo: hookinc.h rsinc.h
1616scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1617scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
1618scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
1619scrollbar-rxvt.lo: rsinc.h
1620scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
1621scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
1622scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
1623scrollbar-xterm.lo: hookinc.h rsinc.h
1624scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1625scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1626scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
1627xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
1628xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
1629xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
1630xdefaults.lo: keyboard.h
1631xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
1632xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
1633xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines