ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.67
Committed: Tue Jan 31 01:42:21 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.66: +99 -0 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 ayin 1.48 DATE=@DATE@
2     VERSION=@VERSION@
3     RXVTNAME=@RXVTNAME@
4     SHELL = /bin/sh
5     prefix = @prefix@
6     exec_prefix = @exec_prefix@
7     bindir = @bindir@
8     libdir = @libdir@
9     includedir = @includedir@
10     CC = @CC@
11     CXX = @CXX@
12     CPP = @CPP@
13     MV = @MV@
14     CP = @CP@
15     LN = @LN@
16     SED = @SED@
17     ECHO = @ECHO@
18     PERL = @PERL@
19     INSTALL = @INSTALL@
20     INSTALL_PROGRAM = @INSTALL@ -m 755
21     INSTALL_DATA = @INSTALL@ -m 644
22     CXXFLAGS = @CXXFLAGS@
23     CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@
24     LDFLAGS = @LDFLAGS@
25     DEFS = @DEFS@
26     LIBS = @LIBS@
27     DINCLUDE = @DINCLUDE@
28     DLIB = @DLIB@
29     XINC = @X_CFLAGS@ @XPM_CFLAGS@
30     XLIB = @X_LIBS@ @XPM_LIBS@ -lX11 @X_EXTRA_LIBS@
31     COMPILE = $(CXX) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CXXFLAGS) $(DEBUG) $(DINCLUDE) $(XINC) -I$(basedir) -I$(srcdir) -I.
32     LINK = @LINKER@ $(LDFLAGS)
33    
34 pcg 1.1 srcdir = @srcdir@
35     VPATH = @srcdir@
36     .PATH: @srcdir@
37    
38     top_builddir = ..
39     basedir = ..
40     thisdir = src
41    
42 root 1.60 DEBUG=-DDEBUG_STRICT
43 pcg 1.1
44     first_rule: all
45     dummy:
46    
47 root 1.26 COMMON = \
48 root 1.61 command.o rxvtfont.o init.o logging.o main.o misc.o netdisp.o \
49     ptytty.o proxy.o screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \
50     scrollbar-xterm.o scrollbar-plain.o xdefaults.o xpm.o encoding.o \
51 root 1.51 rxvttoolkit.o rxvtutil.o iom.o keyboard.o fdpass.o @PERL_O@
52 pcg 1.1
53 root 1.51 COMMON_DAEMON = rxvtdaemon.o
54 root 1.28
55 pcg 1.1 RXVT_BASENAME=`$(ECHO) $(RXVTNAME)|$(SED) 's/$(EXEEXT)$$//'|$(SED) '$(transform)'`
56     RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)$(EXEEXT)
57 pcg 1.5 RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)c$(EXEEXT)
58     RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)d$(EXEEXT)
59 pcg 1.1
60     #
61     # Distribution variables
62     #
63    
64 root 1.26 .SUFFIXES: .C .o
65 pcg 1.1
66     #-------------------------------------------------------------------------
67     # inference rules
68     .C.o:
69     $(COMPILE) -c $<
70    
71 root 1.26 #.C.lo:
72     # $(LIBTOOL) --mode=compile $(COMPILE) -c $<
73     #
74     #.s.lo:
75     # $(LIBTOOL) --mode=compile $(COMPILE) -c $<
76     #
77     #.S.lo:
78     # $(LIBTOOL) --mode=compile $(COMPILE) -c $<
79 pcg 1.1
80     #-------------------------------------------------------------------------
81 pcg 1.13
82 pcg 1.1 all: allbin
83    
84 root 1.26 rxvt: rxvt.o $(COMMON)
85 root 1.55 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) $(DLIB) @PERLLIB@
86 root 1.26 # $(LIBTOOL) --mode=link $(LINK) rxvt.o librxvt.la $(LIBS) $(XLIB) $(DLIB) -o $@
87    
88 root 1.28 rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON)
89 root 1.55 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) $(DLIB) @PERLLIB@
90 root 1.26 # $(LIBTOOL) --mode=link $(LINK) rxvtd.o rxvtdaemon.o librxvt.la $(LIBS) $(XLIB) $(DLIB) -o $@
91    
92 root 1.51 rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass.o
93 root 1.55 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass.o $(LIBS) $(DLIB)
94 root 1.26 # $(LIBTOOL) --mode=link $(LINK) rxvtc.o rxvtdaemon.o $(LIBS) $(DLIB) -o $@
95 pcg 1.1
96 root 1.26 #librxvt.la: $(LIBOBJS)
97     # $(LIBTOOL) --mode=link $(LINK) -rpath $(libdir) -version-info $(LIBVERSION) $(LIBOBJS) $(LIBS) -o $@
98 pcg 1.13
99 pcg 1.1 #-------------------------------------------------------------------------
100 pcg 1.13
101 ayin 1.53 tags: *.[Ch]
102 ayin 1.57 ctags *.[Ch]
103 ayin 1.53
104     TAGS: *.[Ch]
105 ayin 1.57 etags *.[Ch]
106 pcg 1.1
107 root 1.17 allbin: rxvt rxvtd rxvtc
108 pcg 1.1
109     alldoc:
110    
111     clean:
112 ayin 1.59 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C
113     rm -f *.o *.lo .libs/* librxvt.la tmpproto *.tmp
114 pcg 1.1
115     realclean: clean
116 ayin 1.59 rm -f tags TAGS librxvt.h
117 pcg 1.1
118     cleandir: realclean
119    
120     distclean: realclean
121 ayin 1.59 (cd $(srcdir); rm -f Makefile)
122 pcg 1.1
123 root 1.31 install-perl:
124 root 1.32 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)
125     @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
126 root 1.36 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl
127 root 1.31 @IF_PERL@ $(INSTALL_DATA) urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
128 root 1.38 @IF_PERL@ for ext in perl/*; do test -f "$$ext" && $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/"$$ext"; done
129 root 1.31
130     install: allbin alldoc install-perl
131 root 1.32 $(INSTALL) -d $(DESTDIR)$(bindir)
132 root 1.26 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
133     $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
134     $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
135 pcg 1.1
136 root 1.30 perlxsi.c: Makefile
137     $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
138    
139     rxvtperl.C: rxvtperl.xs typemap
140 root 1.54 $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap -prototypes rxvtperl.xs >$@
141 root 1.30
142     rxvtperl.o: rxvtperl.C perlxsi.c
143     $(COMPILE) @PERLFLAGS@ -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
144    
145 root 1.23 depend:
146     makedepend -f Makefile.in -I. -Y *.C -a -o .lo >/dev/null 2>&1
147    
148 pcg 1.1 # DO NOT DELETE: nice dependency list follows
149    
150 root 1.51 command.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
151 root 1.63 command.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
152 root 1.56 command.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
153     command.o: command.h keyboard.h
154 root 1.23 encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
155     encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
156     encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
157     encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
158     encoding.o: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
159     encoding.o: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
160     encoding.o: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
161     encoding.o: table/gb2312_1980_0.h table/cns11643_1992_1.h
162     encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h
163     encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h
164     encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
165     encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
166     encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
167     encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
168     encoding.o: table/compose.h table/category.h
169 root 1.56 fdpass.o: ../config.h libptytty.h
170 root 1.63 init.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
171     init.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
172 root 1.56 init.o: libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
173 root 1.23 iom.o: iom.h iom_conf.h rxvtutil.h callback.h
174 root 1.51 keyboard.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
175 root 1.63 keyboard.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
176 root 1.56 keyboard.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
177     keyboard.o: command.h
178 root 1.58 logging.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
179 root 1.63 logging.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
180 root 1.58 logging.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
181 root 1.63 main.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
182     main.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
183 root 1.56 main.o: libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
184 root 1.63 misc.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
185     misc.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
186 root 1.56 misc.o: libptytty.h rxvtperl.h hookinc.h rsinc.h
187 root 1.51 netdisp.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
188 root 1.63 netdisp.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
189 root 1.56 netdisp.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
190 root 1.62 proxy.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
191 root 1.63 proxy.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
192 root 1.62 proxy.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
193 root 1.58 ptytty.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
194 root 1.63 ptytty.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
195 root 1.58 ptytty.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
196 root 1.63 rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
197     rxvt.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
198 root 1.56 rxvt.o: libptytty.h rxvtperl.h hookinc.h rsinc.h
199 root 1.58 rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
200     rxvtc.o: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
201     rxvtc.o: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
202 root 1.51 rxvtd.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
203 root 1.63 rxvtd.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
204 root 1.56 rxvtd.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
205 root 1.23 rxvtdaemon.o: rxvtdaemon.h rxvtutil.h
206 root 1.51 rxvtfont.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
207 root 1.63 rxvtfont.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
208 root 1.56 rxvtfont.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
209     rxvtfont.o: table/linedraw.h
210     rxvtperl.o: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
211     rxvtperl.o: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
212     rxvtperl.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
213     rxvtperl.o: perlxsi.c
214 root 1.51 rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
215 root 1.63 rxvttoolkit.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
216 root 1.56 rxvttoolkit.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
217 root 1.23 rxvtutil.o: rxvtutil.h
218     salloc.o: salloc.h
219 root 1.51 screen.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
220 root 1.63 screen.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
221 root 1.56 screen.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
222 root 1.51 scrollbar-next.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
223 root 1.63 scrollbar-next.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
224 root 1.56 scrollbar-next.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
225     scrollbar-next.o: rsinc.h
226 root 1.51 scrollbar-plain.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
227 root 1.63 scrollbar-plain.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
228 root 1.56 scrollbar-plain.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
229     scrollbar-plain.o: rsinc.h
230 root 1.51 scrollbar-rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
231 root 1.63 scrollbar-rxvt.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
232 root 1.56 scrollbar-rxvt.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
233     scrollbar-rxvt.o: rsinc.h
234 root 1.51 scrollbar-xterm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
235 root 1.63 scrollbar-xterm.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
236 root 1.56 scrollbar-xterm.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
237     scrollbar-xterm.o: rsinc.h
238 root 1.51 scrollbar.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
239 root 1.63 scrollbar.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
240 root 1.56 scrollbar.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
241 root 1.51 xdefaults.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
242 root 1.63 xdefaults.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
243 root 1.56 xdefaults.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
244     xdefaults.o: keyboard.h
245 root 1.63 xpm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
246     xpm.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
247 root 1.56 xpm.o: libptytty.h rxvtperl.h hookinc.h rsinc.h
248 root 1.51
249     command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
250 root 1.63 command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
251 root 1.56 command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
252     command.lo: command.h keyboard.h
253 root 1.23 encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
254     encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
255     encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
256     encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
257     encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
258     encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
259     encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
260     encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
261     encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
262     encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
263     encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
264     encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
265     encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
266     encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
267     encoding.lo: table/compose.h table/category.h
268 root 1.56 fdpass.lo: ../config.h libptytty.h
269 root 1.51 init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
270 root 1.63 init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
271 root 1.56 init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
272 root 1.23 iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
273 root 1.51 keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
274 root 1.63 keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
275 root 1.56 keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
276     keyboard.lo: command.h
277 root 1.58 logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
278 root 1.63 logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
279 root 1.58 logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
280 root 1.51 main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
281 root 1.63 main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
282 root 1.56 main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
283 root 1.51 misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
284 root 1.63 misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
285 root 1.56 misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
286 root 1.51 netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
287 root 1.63 netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
288 root 1.56 netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
289 root 1.62 proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
290 root 1.63 proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
291 root 1.62 proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
292 root 1.58 ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
293 root 1.63 ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
294 root 1.58 ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
295 root 1.51 rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
296 root 1.63 rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
297 root 1.56 rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
298 root 1.58 rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
299     rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
300     rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
301 root 1.51 rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
302 root 1.63 rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
303 root 1.56 rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
304 root 1.23 rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
305 root 1.51 rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
306 root 1.63 rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
307 root 1.56 rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
308     rxvtfont.lo: table/linedraw.h
309     rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
310     rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
311     rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
312     rxvtperl.lo: perlxsi.c
313 root 1.51 rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
314 root 1.63 rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
315 root 1.56 rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
316 root 1.23 rxvtutil.lo: rxvtutil.h
317     salloc.lo: salloc.h
318 root 1.51 screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
319 root 1.63 screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
320 root 1.56 screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
321 root 1.51 scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
322 root 1.63 scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
323 root 1.56 scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
324     scrollbar-next.lo: rsinc.h
325 root 1.51 scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
326 root 1.63 scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
327 root 1.56 scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
328     scrollbar-plain.lo: hookinc.h rsinc.h
329 root 1.51 scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
330 root 1.63 scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
331 root 1.56 scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
332     scrollbar-rxvt.lo: rsinc.h
333 root 1.51 scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
334 root 1.63 scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
335 root 1.56 scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
336     scrollbar-xterm.lo: hookinc.h rsinc.h
337 root 1.51 scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
338 root 1.63 scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
339 root 1.56 scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
340 root 1.51 xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
341 root 1.63 xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
342 root 1.56 xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
343     xdefaults.lo: keyboard.h
344 root 1.63 xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
345     xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
346 root 1.56 xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h
347 root 1.64
348     command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
349     command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
350     command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
351     command.lo: command.h keyboard.h
352     encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
353     encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
354     encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
355     encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
356     encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
357     encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
358     encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
359     encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
360     encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
361     encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
362     encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
363     encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
364     encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
365     encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
366     encoding.lo: table/compose.h table/category.h
367     fdpass.lo: ../config.h libptytty.h
368     init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
369     init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
370     init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
371     iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
372     keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
373     keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
374     keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
375     keyboard.lo: command.h
376     logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
377     logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
378     logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
379     main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
380     main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
381     main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
382     misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
383     misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
384     misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
385     netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
386     netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
387     netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
388     proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
389     proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
390     proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
391     ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
392     ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
393     ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
394     rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
395     rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
396     rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
397     rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
398     rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
399     rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
400     rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
401     rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
402     rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
403     rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
404     rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
405     rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
406     rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
407     rxvtfont.lo: table/linedraw.h
408     rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
409     rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
410     rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
411     rxvtperl.lo: perlxsi.c
412     rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
413     rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
414     rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
415     rxvtutil.lo: rxvtutil.h
416     salloc.lo: salloc.h
417     screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
418     screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
419     screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
420     scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
421     scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
422     scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
423     scrollbar-next.lo: rsinc.h
424     scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
425     scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
426     scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
427     scrollbar-plain.lo: hookinc.h rsinc.h
428     scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
429     scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
430     scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
431     scrollbar-rxvt.lo: rsinc.h
432     scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
433     scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
434     scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
435     scrollbar-xterm.lo: hookinc.h rsinc.h
436     scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
437     scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
438     scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
439     xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
440     xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
441     xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
442     xdefaults.lo: keyboard.h
443     xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
444     xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
445     xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h
446    
447     command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
448     command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
449     command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
450     command.lo: command.h keyboard.h
451     encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
452     encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
453     encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
454     encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
455     encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
456     encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
457     encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
458     encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
459     encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
460     encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
461     encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
462     encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
463     encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
464     encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
465     encoding.lo: table/compose.h table/category.h
466     fdpass.lo: ../config.h libptytty.h
467     init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
468     init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
469     init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
470     iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
471     keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
472     keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
473     keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
474     keyboard.lo: command.h
475     logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
476     logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
477     logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
478     main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
479     main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
480     main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
481     misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
482     misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
483     misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
484     netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
485     netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
486     netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
487     proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
488     proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
489     proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
490     ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
491     ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
492     ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
493     rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
494     rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
495     rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
496     rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
497     rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
498     rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
499     rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
500     rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
501     rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
502     rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
503     rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
504     rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
505     rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
506     rxvtfont.lo: table/linedraw.h
507     rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
508     rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
509     rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
510     rxvtperl.lo: perlxsi.c
511     rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
512     rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
513     rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
514     rxvtutil.lo: rxvtutil.h
515     salloc.lo: salloc.h
516     screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
517     screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
518     screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
519     scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
520     scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
521     scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
522     scrollbar-next.lo: rsinc.h
523     scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
524     scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
525     scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
526     scrollbar-plain.lo: hookinc.h rsinc.h
527     scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
528     scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
529     scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
530     scrollbar-rxvt.lo: rsinc.h
531     scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
532     scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
533     scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
534     scrollbar-xterm.lo: hookinc.h rsinc.h
535     scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
536     scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
537     scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
538     xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
539     xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
540     xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
541     xdefaults.lo: keyboard.h
542     xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
543     xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
544     xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h
545 root 1.65
546     command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
547     command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
548     command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
549     command.lo: command.h keyboard.h
550     encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
551     encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
552     encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
553     encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
554     encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
555     encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
556     encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
557     encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
558     encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
559     encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
560     encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
561     encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
562     encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
563     encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
564     encoding.lo: table/compose.h table/category.h
565     fdpass.lo: ../config.h libptytty.h
566     init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
567     init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
568     init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
569     iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
570     keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
571     keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
572     keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
573     keyboard.lo: command.h
574     logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
575     logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
576     logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
577     main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
578     main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
579     main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
580     misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
581     misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
582     misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
583     netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
584     netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
585     netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
586     proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
587     proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
588     proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
589     ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
590     ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
591     ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
592     rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
593     rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
594     rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
595     rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
596     rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
597     rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
598     rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
599     rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
600     rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
601     rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
602     rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
603     rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
604     rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
605     rxvtfont.lo: table/linedraw.h
606     rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
607     rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
608     rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
609     rxvtperl.lo: perlxsi.c
610     rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
611     rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
612     rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
613     rxvtutil.lo: rxvtutil.h
614     salloc.lo: salloc.h
615     screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
616     screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
617     screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
618     scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
619     scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
620     scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
621     scrollbar-next.lo: rsinc.h
622     scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
623     scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
624     scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
625     scrollbar-plain.lo: hookinc.h rsinc.h
626     scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
627     scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
628     scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
629     scrollbar-rxvt.lo: rsinc.h
630     scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
631     scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
632     scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
633     scrollbar-xterm.lo: hookinc.h rsinc.h
634     scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
635     scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
636     scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
637     xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
638     xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
639     xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
640     xdefaults.lo: keyboard.h
641     xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
642     xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
643     xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h
644 root 1.66
645     command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
646     command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
647     command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
648     command.lo: command.h keyboard.h
649     encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
650     encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
651     encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
652     encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
653     encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
654     encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
655     encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
656     encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
657     encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
658     encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
659     encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
660     encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
661     encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
662     encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
663     encoding.lo: table/compose.h table/category.h
664     fdpass.lo: ../config.h libptytty.h
665     init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
666     init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
667     init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
668     iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
669     keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
670     keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
671     keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
672     keyboard.lo: command.h
673     logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
674     logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
675     logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
676     main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
677     main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
678     main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
679     misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
680     misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
681     misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
682     netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
683     netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
684     netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
685     proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
686     proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
687     proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
688     ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
689     ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
690     ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
691     rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
692     rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
693     rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
694     rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
695     rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
696     rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
697     rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
698     rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
699     rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
700     rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
701     rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
702     rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
703     rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
704     rxvtfont.lo: table/linedraw.h
705     rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
706     rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
707     rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
708     rxvtperl.lo: perlxsi.c
709     rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
710     rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
711     rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
712     rxvtutil.lo: rxvtutil.h
713     salloc.lo: salloc.h
714     screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
715     screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
716     screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
717     scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
718     scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
719     scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
720     scrollbar-next.lo: rsinc.h
721     scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
722     scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
723     scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
724     scrollbar-plain.lo: hookinc.h rsinc.h
725     scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
726     scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
727     scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
728     scrollbar-rxvt.lo: rsinc.h
729     scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
730     scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
731     scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
732     scrollbar-xterm.lo: hookinc.h rsinc.h
733     scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
734     scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
735     scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
736     xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
737     xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
738     xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
739     xdefaults.lo: keyboard.h
740     xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
741     xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
742     xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h
743 root 1.67
744     command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
745     command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
746     command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
747     command.lo: command.h keyboard.h
748     encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
749     encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
750     encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
751     encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
752     encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
753     encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
754     encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
755     encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
756     encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
757     encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
758     encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
759     encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
760     encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
761     encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
762     encoding.lo: table/compose.h table/category.h
763     fdpass.lo: ../config.h libptytty.h
764     init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
765     init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
766     init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
767     iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
768     keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
769     keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
770     keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
771     keyboard.lo: command.h
772     logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
773     logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
774     logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
775     main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
776     main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
777     main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
778     misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
779     misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
780     misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
781     netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
782     netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
783     netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
784     proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
785     proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
786     proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
787     ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
788     ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
789     ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
790     rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
791     rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
792     rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
793     rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
794     rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
795     rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
796     rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
797     rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
798     rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
799     rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
800     rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
801     rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
802     rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
803     rxvtfont.lo: table/linedraw.h
804     rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
805     rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
806     rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
807     rxvtperl.lo: perlxsi.c
808     rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
809     rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
810     rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
811     rxvtutil.lo: rxvtutil.h
812     salloc.lo: salloc.h
813     screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
814     screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
815     screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
816     scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
817     scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
818     scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
819     scrollbar-next.lo: rsinc.h
820     scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
821     scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
822     scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
823     scrollbar-plain.lo: hookinc.h rsinc.h
824     scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
825     scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
826     scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
827     scrollbar-rxvt.lo: rsinc.h
828     scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
829     scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
830     scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
831     scrollbar-xterm.lo: hookinc.h rsinc.h
832     scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
833     scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
834     scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
835     xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
836     xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
837     xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
838     xdefaults.lo: keyboard.h
839     xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
840     xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
841     xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h