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