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