ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.44
Committed: Mon Jan 16 14:48:39 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.43: +52 -73 lines
Log Message:
*** empty log message ***

File Contents

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