ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.96
Committed: Wed Jun 13 11:30:42 2007 UTC (16 years, 11 months ago) by ayin
Branch: MAIN
Changes since 1.95: +0 -2 lines
Log Message:
Remove unused variables.

File Contents

# Content
1 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 CP = @CP@
14 SED = @SED@
15 ECHO = @ECHO@
16 PERL = @PERL@
17 INSTALL = @INSTALL@
18 INSTALL_PROGRAM = @INSTALL@ -m 755
19 INSTALL_DATA = @INSTALL@ -m 644
20 CXXFLAGS = @CXXFLAGS@
21 CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@
22 LDFLAGS = @LDFLAGS@
23 DEFS = @DEFS@
24 LIBS = @LIBS@
25 XINC = @X_CFLAGS@ @XPM_CFLAGS@ @LIBAFTERIMAGE_CFLAGS@
26 XLIB = @X_LIBS@ @XPM_LIBS@ @AFTERIMAGE_LIBS@ -lX11 @X_EXTRA_LIBS@
27 COMPILE = $(CXX) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CXXFLAGS) $(DEBUG) $(XINC) -I.. -I$(srcdir) -I.
28 LINK = @LINKER@ $(LDFLAGS)
29
30 srcdir = @srcdir@
31 VPATH = @srcdir@
32
33 DEBUG=-DDEBUG_STRICT
34
35 first_rule: all
36 dummy:
37
38 COMMON = \
39 command.o rxvtfont.o init.o logging.o main.o misc.o netdisp.o \
40 ptytty.o proxy.o screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \
41 scrollbar-xterm.o scrollbar-plain.o xdefaults.o xpm.o encoding.o \
42 rxvttoolkit.o rxvtutil.o iom.o keyboard.o fdpass.o @PERL_O@
43
44 COMMON_DAEMON = rxvtdaemon.o
45
46 RXVT_BASENAME=`$(ECHO) $(RXVTNAME)|$(SED) 's/$(EXEEXT)$$//'|$(SED) '$(transform)'`
47 RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)$(EXEEXT)
48 RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)c$(EXEEXT)
49 RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)d$(EXEEXT)
50
51 #
52 # Distribution variables
53 #
54
55 .SUFFIXES: .C .c .o
56
57 #-------------------------------------------------------------------------
58 # inference rules
59 .C.o:
60 $(COMPILE) -c $<
61
62 #.C.lo:
63 # $(LIBTOOL) --mode=compile $(COMPILE) -c $<
64 #
65 #.s.lo:
66 # $(LIBTOOL) --mode=compile $(COMPILE) -c $<
67 #
68 #.S.lo:
69 # $(LIBTOOL) --mode=compile $(COMPILE) -c $<
70
71 #-------------------------------------------------------------------------
72
73 all: allbin
74
75 rxvt: rxvt.o $(COMMON)
76 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) @PERLLIB@
77 # $(LIBTOOL) --mode=link $(LINK) rxvt.o librxvt.la $(LIBS) $(XLIB) -o $@
78
79 rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON)
80 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) @PERLLIB@
81 # $(LIBTOOL) --mode=link $(LINK) rxvtd.o rxvtdaemon.o librxvt.la $(LIBS) $(XLIB) -o $@
82
83 rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass.o
84 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass.o $(LIBS)
85 # $(LIBTOOL) --mode=link $(LINK) rxvtc.o rxvtdaemon.o $(LIBS) -o $@
86
87 #librxvt.la: $(LIBOBJS)
88 # $(LIBTOOL) --mode=link $(LINK) -rpath $(libdir) -version-info $(LIBVERSION) $(LIBOBJS) $(LIBS) -o $@
89
90 #-------------------------------------------------------------------------
91
92 tags: *.[Ch]
93 ctags *.[Ch]
94
95 TAGS: *.[Ch]
96 etags *.[Ch]
97
98 allbin: rxvt rxvtd rxvtc
99
100 alldoc:
101
102 clean:
103 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C
104 rm -f *.o *.lo .libs/* librxvt.la tmpproto *.tmp
105
106 distclean: clean
107 rm -f Makefile rxvtlib.h
108
109 realclean: distclean
110 rm -f tags TAGS
111
112 cleandir: realclean
113
114 install-perl:
115 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)
116 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
117 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl
118 @IF_PERL@ $(INSTALL_DATA) $(srcdir)/urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
119 @IF_PERL@ for ext in $(srcdir)/perl/*; do test -f "$$ext" && $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/"`basename "$$ext"`"; done
120
121 install-bin: allbin
122 $(INSTALL) -d $(DESTDIR)$(bindir)
123 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
124 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
125 $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
126
127 install: install-bin install-perl
128
129 perlxsi.c: Makefile
130 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
131
132 rxvtperl.C: rxvtperl.xs iom_perl.h iom_perl.xs typemap typemap.iom
133 PERL="$(PERL)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap.iom -typemap typemap -prototypes $(srcdir)/rxvtperl.xs >$@
134
135 rxvtperl.o: rxvtperl.C perlxsi.c
136 $(COMPILE) @PERLFLAGS@ -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
137
138 depend:
139 makedepend -f Makefile.in -I. -Y *.C >/dev/null 2>&1
140 makedepend -f Makefile.in -I. -Y *.C -a -o .lo >/dev/null 2>&1
141
142 # DO NOT DELETE: nice dependency list follows
143
144 command.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
145 command.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
146 command.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h version.h
147 command.o: command.h keyboard.h
148 encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
149 encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
150 encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
151 encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
152 encoding.o: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
153 encoding.o: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
154 encoding.o: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
155 encoding.o: table/gb2312_1980_0.h table/cns11643_1992_1.h
156 encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h
157 encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h
158 encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
159 encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
160 encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
161 encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
162 encoding.o: table/compose.h table/category.h
163 fdpass.o: ../config.h libptytty.h
164 init.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
165 init.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h callback.h
166 init.o: salloc.h rxvtperl.h hookinc.h rsinc.h init.h
167 iom.o: iom.h iom_conf.h rxvtutil.h libptytty.h callback.h
168 keyboard.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
169 keyboard.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
170 keyboard.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
171 keyboard.o: command.h
172 logging.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
173 logging.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
174 logging.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
175 main.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
176 main.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h callback.h
177 main.o: salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
178 misc.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
179 misc.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h callback.h
180 misc.o: salloc.h rxvtperl.h hookinc.h rsinc.h
181 netdisp.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
182 netdisp.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
183 netdisp.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
184 proxy.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
185 proxy.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
186 proxy.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
187 ptytty.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
188 ptytty.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
189 ptytty.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
190 rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
191 rxvt.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h callback.h
192 rxvt.o: salloc.h rxvtperl.h hookinc.h rsinc.h
193 rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
194 rxvtc.o: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
195 rxvtc.o: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
196 rxvtd.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
197 rxvtd.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
198 rxvtd.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
199 rxvtdaemon.o: rxvtdaemon.h rxvtutil.h
200 rxvtfont.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
201 rxvtfont.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
202 rxvtfont.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h table/linedraw.h
203 rxvtperl.o: ../config.h iom.h iom_conf.h rxvtutil.h libptytty.h callback.h
204 rxvtperl.o: rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
205 rxvtperl.o: rxvttoolkit.h salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
206 rxvtperl.o: perlxsi.c ./iom_perl.h
207 rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
208 rxvttoolkit.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
209 rxvttoolkit.o: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
210 rxvtutil.o: rxvtutil.h
211 salloc.o: salloc.h
212 screen.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
213 screen.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
214 screen.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h salloc.C
215 scrollbar-next.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
216 scrollbar-next.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
217 scrollbar-next.o: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h
218 scrollbar-next.o: rsinc.h
219 scrollbar-plain.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
220 scrollbar-plain.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
221 scrollbar-plain.o: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h
222 scrollbar-plain.o: rsinc.h
223 scrollbar-rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
224 scrollbar-rxvt.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
225 scrollbar-rxvt.o: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h
226 scrollbar-rxvt.o: rsinc.h
227 scrollbar-xterm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
228 scrollbar-xterm.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
229 scrollbar-xterm.o: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h
230 scrollbar-xterm.o: rsinc.h
231 scrollbar.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
232 scrollbar.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
233 scrollbar.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
234 xdefaults.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
235 xdefaults.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
236 xdefaults.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h version.h
237 xdefaults.o: keyboard.h
238 xpm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
239 xpm.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h callback.h
240 xpm.o: salloc.h rxvtperl.h hookinc.h rsinc.h
241
242 command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
243 command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
244 command.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h version.h
245 command.lo: command.h keyboard.h
246 encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
247 encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
248 encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
249 encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
250 encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
251 encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
252 encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
253 encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
254 encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
255 encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
256 encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
257 encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
258 encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
259 encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
260 encoding.lo: table/compose.h table/category.h
261 fdpass.lo: ../config.h libptytty.h
262 init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
263 init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
264 init.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h init.h
265 iom.lo: iom.h iom_conf.h rxvtutil.h libptytty.h callback.h
266 keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
267 keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
268 keyboard.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
269 keyboard.lo: command.h
270 logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
271 logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
272 logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
273 main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
274 main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
275 main.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
276 misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
277 misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
278 misc.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
279 netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
280 netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
281 netdisp.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
282 proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
283 proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
284 proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
285 ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
286 ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
287 ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
288 rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
289 rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
290 rxvt.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
291 rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
292 rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
293 rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
294 rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
295 rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
296 rxvtd.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
297 rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
298 rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
299 rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
300 rxvtfont.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
301 rxvtfont.lo: table/linedraw.h
302 rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h libptytty.h callback.h
303 rxvtperl.lo: rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
304 rxvtperl.lo: rxvttoolkit.h salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
305 rxvtperl.lo: perlxsi.c ./iom_perl.h
306 rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
307 rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
308 rxvttoolkit.lo: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
309 rxvtutil.lo: rxvtutil.h
310 salloc.lo: salloc.h
311 screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
312 screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
313 screen.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h salloc.C
314 scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
315 scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
316 scrollbar-next.lo: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h
317 scrollbar-next.lo: rsinc.h
318 scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
319 scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
320 scrollbar-plain.lo: iom_conf.h libptytty.h callback.h salloc.h rxvtperl.h
321 scrollbar-plain.lo: hookinc.h rsinc.h
322 scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
323 scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
324 scrollbar-rxvt.lo: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h
325 scrollbar-rxvt.lo: rsinc.h
326 scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
327 scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
328 scrollbar-xterm.lo: iom_conf.h libptytty.h callback.h salloc.h rxvtperl.h
329 scrollbar-xterm.lo: hookinc.h rsinc.h
330 scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
331 scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
332 scrollbar.lo: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
333 xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
334 xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
335 xdefaults.lo: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
336 xdefaults.lo: version.h keyboard.h
337 xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
338 xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h callback.h
339 xpm.lo: salloc.h rxvtperl.h hookinc.h rsinc.h