ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.39
Committed: Sat Jan 7 20:23:52 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.38: +66 -56 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 @PERL_O@ \
25 main.o menubar.o misc.o netdisp.o ptytty.o screen.o \
26 scrollbar.o scrollbar-next.o scrollbar-rxvt.o scrollbar-xterm.o scrollbar-plain.o \
27 strings.o xdefaults.o xpm.o encoding.o rxvttoolkit.o rxvtutil.o iom.o keyboard.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 core a.out *.o *.lo *.bak *~ *.intpro .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 encoding.h
125 command.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
126 command.o: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.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 fdpass.h
144 init.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h
145 init.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
146 init.o: rxvtperl.h hookinc.h rsinc.h menubar.h init.h
147 iom.o: iom.h iom_conf.h rxvtutil.h callback.h
148 keyboard.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
149 keyboard.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
150 keyboard.o: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h keyboard.h
151 keyboard.o: command.h
152 logging.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
153 logging.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
154 logging.o: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h logging.h
155 main.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h
156 main.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
157 main.o: rxvtperl.h hookinc.h rsinc.h menubar.h keyboard.h
158 menubar.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
159 menubar.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
160 menubar.o: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h version.h
161 misc.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h
162 misc.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
163 misc.o: rxvtperl.h hookinc.h rsinc.h menubar.h
164 netdisp.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
165 netdisp.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
166 netdisp.o: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h
167 ptytty.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.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 menubar.h
170 rxvt.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h
171 rxvt.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
172 rxvt.o: rxvtperl.h hookinc.h rsinc.h menubar.h
173 rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h fdpass.h rxvt.h rxvtlib.h
174 rxvtc.o: ptytty.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
175 rxvtc.o: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
176 rxvtc.o: menubar.h
177 rxvtd.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
178 rxvtd.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
179 rxvtd.o: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h rxvtdaemon.h
180 rxvtd.o: fdpass.h
181 rxvtdaemon.o: rxvtdaemon.h rxvtutil.h
182 rxvtfont.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
183 rxvtfont.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
184 rxvtfont.o: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h table/linedraw.h
185 rxvtperl.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
186 rxvtperl.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
187 rxvtperl.o: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h perlxsi.c
188 rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
189 rxvttoolkit.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
190 rxvttoolkit.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h
191 rxvtutil.o: rxvtutil.h
192 salloc.o: salloc.h
193 screen.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
194 screen.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
195 screen.o: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h salloc.C
196 scrollbar-next.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
197 scrollbar-next.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
198 scrollbar-next.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h
199 scrollbar-plain.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
200 scrollbar-plain.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
201 scrollbar-plain.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h
202 scrollbar-rxvt.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
203 scrollbar-rxvt.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
204 scrollbar-rxvt.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h
205 scrollbar-xterm.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
206 scrollbar-xterm.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
207 scrollbar-xterm.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h
208 scrollbar.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
209 scrollbar.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
210 scrollbar.o: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h
211 strings.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
212 strings.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
213 strings.o: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h
214 xdefaults.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
215 xdefaults.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
216 xdefaults.o: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h version.h
217 xdefaults.o: keyboard.h
218 xpm.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h
219 xpm.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
220 xpm.o: rxvtperl.h hookinc.h rsinc.h menubar.h
221
222 command.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
223 command.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
224 command.lo: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h version.h
225 command.lo: command.h keyboard.h
226 encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
227 encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
228 encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
229 encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
230 encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
231 encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
232 encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
233 encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
234 encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
235 encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
236 encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
237 encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
238 encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
239 encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
240 encoding.lo: table/compose.h table/category.h
241 fdpass.lo: ../config.h fdpass.h
242 init.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.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 menubar.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 encoding.h
247 keyboard.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
248 keyboard.lo: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h keyboard.h
249 keyboard.lo: command.h
250 logging.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
251 logging.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
252 logging.lo: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h logging.h
253 main.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.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 menubar.h keyboard.h
256 menubar.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
257 menubar.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
258 menubar.lo: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h version.h
259 misc.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
260 misc.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
261 misc.lo: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h
262 netdisp.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
263 netdisp.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
264 netdisp.lo: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h
265 ptytty.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
266 ptytty.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
267 ptytty.lo: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h
268 rxvt.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
269 rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
270 rxvt.lo: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h
271 rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h fdpass.h rxvt.h rxvtlib.h
272 rxvtc.lo: ptytty.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
273 rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
274 rxvtc.lo: menubar.h
275 rxvtd.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
276 rxvtd.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
277 rxvtd.lo: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h rxvtdaemon.h
278 rxvtd.lo: fdpass.h
279 rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
280 rxvtfont.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
281 rxvtfont.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
282 rxvtfont.lo: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h table/linedraw.h
283 rxvtperl.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
284 rxvtperl.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
285 rxvtperl.lo: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h perlxsi.c
286 rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
287 rxvttoolkit.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
288 rxvttoolkit.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h
289 rxvtutil.lo: rxvtutil.h
290 salloc.lo: salloc.h
291 screen.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
292 screen.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
293 screen.lo: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h salloc.C
294 scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
295 scrollbar-next.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
296 scrollbar-next.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h
297 scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h
298 scrollbar-plain.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
299 scrollbar-plain.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h
300 scrollbar-plain.lo: rsinc.h menubar.h
301 scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
302 scrollbar-rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
303 scrollbar-rxvt.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h
304 scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h
305 scrollbar-xterm.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
306 scrollbar-xterm.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h
307 scrollbar-xterm.lo: rsinc.h menubar.h
308 scrollbar.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
309 scrollbar.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
310 scrollbar.lo: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h
311 strings.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
312 strings.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
313 strings.lo: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h
314 xdefaults.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
315 xdefaults.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
316 xdefaults.lo: salloc.h rxvtperl.h hookinc.h rsinc.h menubar.h version.h
317 xdefaults.lo: keyboard.h
318 xpm.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h
319 xpm.lo: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
320 xpm.lo: rxvtperl.h hookinc.h rsinc.h menubar.h