ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.115
Committed: Mon Nov 19 12:02:36 2007 UTC (16 years, 6 months ago) by root
Branch: MAIN
Changes since 1.114: +0 -8 lines
Log Message:
*** empty log message ***

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 PERL = @PERL@
14 INSTALL = @INSTALL@
15 INSTALL_PROGRAM = @INSTALL@ -m 755
16 INSTALL_DATA = @INSTALL@ -m 644
17 CXXFLAGS = @CXXFLAGS@
18 CPPFLAGS = @CPPFLAGS@
19 LDFLAGS = @LDFLAGS@
20 DEFS = @DEFS@
21 LIBS = @LIBS@
22 XINC = @X_CFLAGS@ @AFTERIMAGE_CFLAGS@
23 XLIB = @X_LIBS@ @AFTERIMAGE_LIBS@ -lX11 @X_EXTRA_LIBS@
24 COMPILE = $(CXX) -I$(srcdir)/../libev -I.. -I$(srcdir) -I. $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(DEBUG) $(XINC)
25 LINK = @LINKER@ $(LDFLAGS)
26
27 srcdir = @srcdir@
28 VPATH = @srcdir@
29
30 DEBUG=-DDEBUG_STRICT
31
32 first_rule: all
33 dummy:
34
35 COMMON = \
36 background.o command.o rxvtfont.o init.o logging.o main.o misc.o \
37 ptytty.o proxy.o screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \
38 scrollbar-xterm.o scrollbar-plain.o xdefaults.o encoding.o \
39 rxvttoolkit.o rxvtutil.o keyboard.o \
40 fdpass.o ev_cpp.o @PERL_O@
41
42 COMMON_DAEMON = rxvtdaemon.o
43
44 RXVT_BASENAME=`echo $(RXVTNAME)|sed 's/$(EXEEXT)$$//'|sed '$(transform)'`
45 RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)$(EXEEXT)
46 RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)c$(EXEEXT)
47 RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)d$(EXEEXT)
48
49 #
50 # Distribution variables
51 #
52
53 .SUFFIXES: .C .c .o
54
55 #-------------------------------------------------------------------------
56 # inference rules
57 .C.o:
58 $(COMPILE) -c $<
59
60 #.C.lo:
61 # $(LIBTOOL) --mode=compile $(COMPILE) -c $<
62 #
63 #.s.lo:
64 # $(LIBTOOL) --mode=compile $(COMPILE) -c $<
65 #
66 #.S.lo:
67 # $(LIBTOOL) --mode=compile $(COMPILE) -c $<
68
69 #-------------------------------------------------------------------------
70
71 all: allbin
72
73 rxvt: rxvt.o $(COMMON)
74 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) @PERLLIB@
75 # $(LIBTOOL) --mode=link $(LINK) rxvt.o librxvt.la $(LIBS) $(XLIB) -o $@
76
77 rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON)
78 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) @PERLLIB@
79 # $(LIBTOOL) --mode=link $(LINK) rxvtd.o rxvtdaemon.o librxvt.la $(LIBS) $(XLIB) -o $@
80
81 rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass.o ev_cpp.o
82 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass.o ev_cpp.o $(LIBS)
83 # $(LIBTOOL) --mode=link $(LINK) rxvtc.o rxvtdaemon.o $(LIBS) -o $@
84
85 #librxvt.la: $(LIBOBJS)
86 # $(LIBTOOL) --mode=link $(LINK) -rpath $(libdir) -version-info $(LIBVERSION) $(LIBOBJS) $(LIBS) -o $@
87
88 #-------------------------------------------------------------------------
89
90 #EXUBERANT_OPTS = -I NOTHROW
91
92 tags: *.[Ch]
93 ctags $(EXUBERANT_OPTS) *.[Ch]
94
95 TAGS: *.[Ch]
96 etags $(EXUBERANT_OPTS) *.[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 background.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
145 background.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h
146 background.o: salloc.h libptytty.h rxvtperl.h hookinc.h background.h rsinc.h
147 command.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
148 command.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
149 command.o: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h version.h
150 command.o: command.h keyboard.h
151 encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
152 encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
153 encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
154 encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
155 encoding.o: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
156 encoding.o: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
157 encoding.o: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
158 encoding.o: table/gb2312_1980_0.h table/cns11643_1992_1.h
159 encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h
160 encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h
161 encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
162 encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
163 encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
164 encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
165 encoding.o: table/compose.h table/category.h
166 ev_cpp.o: rxvttoolkit.h ev_cpp.h rxvtlib.h optinc.h rxvtutil.h callback.h
167 fdpass.o: ../config.h libptytty.h
168 init.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
169 init.o: rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h libptytty.h
170 init.o: rxvtperl.h hookinc.h background.h rsinc.h init.h
171 keyboard.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
172 keyboard.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
173 keyboard.o: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h keyboard.h
174 keyboard.o: command.h
175 logging.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
176 logging.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
177 logging.o: ev_cpp.h callback.h salloc.h rxvtperl.h hookinc.h background.h
178 logging.o: rsinc.h
179 main.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
180 main.o: rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h libptytty.h
181 main.o: rxvtperl.h hookinc.h background.h rsinc.h keyboard.h
182 misc.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
183 misc.o: rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h libptytty.h
184 misc.o: rxvtperl.h hookinc.h background.h rsinc.h
185 proxy.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
186 proxy.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
187 proxy.o: ev_cpp.h callback.h salloc.h rxvtperl.h hookinc.h background.h
188 proxy.o: rsinc.h
189 ptytty.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
190 ptytty.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
191 ptytty.o: ev_cpp.h callback.h salloc.h rxvtperl.h hookinc.h background.h
192 ptytty.o: rsinc.h
193 rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
194 rxvt.o: rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h libptytty.h
195 rxvt.o: rxvtperl.h hookinc.h background.h rsinc.h
196 rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
197 rxvtc.o: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h ev_cpp.h
198 rxvtc.o: callback.h salloc.h rxvtperl.h hookinc.h background.h rsinc.h
199 rxvtd.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
200 rxvtd.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
201 rxvtd.o: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h rxvtdaemon.h
202 rxvtdaemon.o: rxvtdaemon.h rxvtutil.h
203 rxvtfont.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
204 rxvtfont.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
205 rxvtfont.o: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h
206 rxvtfont.o: table/linedraw.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 ev_cpp.h callback.h
209 rxvttoolkit.o: salloc.h libptytty.h rxvtperl.h hookinc.h background.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 ev_cpp.h callback.h salloc.h
214 screen.o: libptytty.h rxvtperl.h hookinc.h background.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 ev_cpp.h callback.h
217 scrollbar-next.o: salloc.h libptytty.h rxvtperl.h hookinc.h background.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 ev_cpp.h callback.h
221 scrollbar-plain.o: salloc.h libptytty.h rxvtperl.h hookinc.h background.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 ev_cpp.h callback.h
225 scrollbar-rxvt.o: salloc.h libptytty.h rxvtperl.h hookinc.h background.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 ev_cpp.h callback.h
229 scrollbar-xterm.o: salloc.h libptytty.h rxvtperl.h hookinc.h background.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 ev_cpp.h callback.h salloc.h
233 scrollbar.o: libptytty.h rxvtperl.h hookinc.h background.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 ev_cpp.h callback.h salloc.h
236 xdefaults.o: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h version.h
237 xdefaults.o: keyboard.h
238
239 background.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
240 background.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h
241 background.lo: salloc.h libptytty.h rxvtperl.h hookinc.h background.h rsinc.h
242 command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
243 command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
244 command.lo: libptytty.h rxvtperl.h hookinc.h background.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 ev_cpp.lo: rxvttoolkit.h ev_cpp.h rxvtlib.h optinc.h rxvtutil.h callback.h
262 fdpass.lo: ../config.h libptytty.h
263 init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
264 init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
265 init.lo: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h init.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 ev_cpp.h callback.h salloc.h
268 keyboard.lo: libptytty.h rxvtperl.h hookinc.h background.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: ev_cpp.h callback.h salloc.h rxvtperl.h hookinc.h background.h
273 logging.lo: rsinc.h
274 main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
275 main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
276 main.lo: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h keyboard.h
277 misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
278 misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
279 misc.lo: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h
280 proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
281 proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
282 proxy.lo: ev_cpp.h callback.h salloc.h rxvtperl.h hookinc.h background.h
283 proxy.lo: rsinc.h
284 ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
285 ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
286 ptytty.lo: ev_cpp.h callback.h salloc.h rxvtperl.h hookinc.h background.h
287 ptytty.lo: 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 ev_cpp.h callback.h salloc.h
290 rxvt.lo: libptytty.h rxvtperl.h hookinc.h background.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 ev_cpp.h
293 rxvtc.lo: callback.h salloc.h rxvtperl.h hookinc.h background.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 ev_cpp.h callback.h salloc.h
296 rxvtd.lo: libptytty.h rxvtperl.h hookinc.h background.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 ev_cpp.h callback.h salloc.h
300 rxvtfont.lo: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h
301 rxvtfont.lo: table/linedraw.h
302 rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
303 rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h
304 rxvttoolkit.lo: salloc.h libptytty.h rxvtperl.h hookinc.h background.h
305 rxvttoolkit.lo: rsinc.h
306 rxvtutil.lo: rxvtutil.h
307 salloc.lo: salloc.h
308 screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
309 screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
310 screen.lo: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h salloc.C
311 scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
312 scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h
313 scrollbar-next.lo: salloc.h libptytty.h rxvtperl.h hookinc.h background.h
314 scrollbar-next.lo: rsinc.h
315 scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
316 scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h
317 scrollbar-plain.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
318 scrollbar-plain.lo: background.h rsinc.h
319 scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
320 scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h
321 scrollbar-rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h background.h
322 scrollbar-rxvt.lo: rsinc.h
323 scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
324 scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h
325 scrollbar-xterm.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
326 scrollbar-xterm.lo: background.h rsinc.h
327 scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
328 scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h
329 scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h background.h rsinc.h
330 xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
331 xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h
332 xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h background.h rsinc.h
333 xdefaults.lo: version.h keyboard.h