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