*** 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 @PERL_O@
70
71 COMMON_DAEMON = rxvtdaemon.o fdpass.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 RXVT_OLDNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)-old$(EXEEXT)
78
79 #
80 # Distribution variables
81 #
82
83 .SUFFIXES:      .C .o
84
85 #-------------------------------------------------------------------------
86 # inference rules
87 .C.o:
88         $(COMPILE) -c $<
89
90 #.C.lo:
91 #       $(LIBTOOL) --mode=compile $(COMPILE) -c $<
92 #
93 #.s.lo:
94 #       $(LIBTOOL) --mode=compile $(COMPILE) -c $<
95 #
96 #.S.lo:
97 #       $(LIBTOOL) --mode=compile $(COMPILE) -c $<
98
99 #-------------------------------------------------------------------------
100
101 all: allbin
102
103 rxvt: rxvt.o $(COMMON)
104         $(LINK) -o $@ $^ $(LIBS) $(XLIB) $(DLIB) @PERLLIB@
105 #       $(LIBTOOL) --mode=link $(LINK) rxvt.o librxvt.la $(LIBS) $(XLIB) $(DLIB) -o $@
106
107 rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON)
108         $(LINK) -o $@ $^ $(LIBS) $(XLIB) $(DLIB) @PERLLIB@
109 #       $(LIBTOOL) --mode=link $(LINK) rxvtd.o rxvtdaemon.o librxvt.la $(LIBS) $(XLIB) $(DLIB) -o $@
110
111 rxvtc: rxvtc.o $(COMMON_DAEMON)
112         $(LINK) -o $@ $^ $(LIBS) $(DLIB)
113 #       $(LIBTOOL) --mode=link $(LINK) rxvtc.o rxvtdaemon.o $(LIBS) $(DLIB) -o $@
114
115 #librxvt.la: $(LIBOBJS)
116 #       $(LIBTOOL) --mode=link $(LINK) -rpath $(libdir) -version-info $(LIBVERSION) $(LIBOBJS) $(LIBS) -o $@
117
118 #-------------------------------------------------------------------------
119
120 tags:
121         ctags *.h *.C
122
123 allbin: rxvt rxvtd rxvtc
124
125 alldoc:
126
127 clean:
128         $(RMF) rxvt rxvtc rxvtd perlxsi.c rxvtperl.C
129         $(RMF) *.o *.lo .libs/* librxvt.la tmpproto *.tmp
130
131 realclean: clean
132         $(RMF) tags librxvt.h
133
134 cleandir: realclean
135
136 distclean: realclean
137         (cd $(srcdir); $(RMF) Makefile)
138
139 install-perl:
140 @IF_PERL@       $(INSTALL) -d $(DESTDIR)$(libdir)
141 @IF_PERL@       $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
142 @IF_PERL@       $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl
143 @IF_PERL@       $(INSTALL_DATA) urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
144 @IF_PERL@       for ext in perl/*; do test -f "$$ext" && $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/"$$ext"; done
145
146 install: allbin alldoc install-perl
147         $(INSTALL) -d $(DESTDIR)$(bindir)
148         $(INSTALL_PROGRAM) rxvt  $(RXVT_BINNAME)
149         $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
150         $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
151
152 perlxsi.c: Makefile
153         $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
154
155 rxvtperl.C: rxvtperl.xs typemap
156         $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap -prototypes $< >$@
157
158 rxvtperl.o: rxvtperl.C perlxsi.c
159         $(COMPILE) @PERLFLAGS@ -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
160
161 depend:
162         makedepend -f Makefile.in -I. -Y *.C >/dev/null 2>&1
163         makedepend -f Makefile.in -I. -Y *.C -a -o .lo >/dev/null 2>&1
164
165 # DO NOT DELETE: nice dependency list follows
166
167 command.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
168 command.o: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
169 command.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h version.h
170 command.o: command.h keyboard.h
171 encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
172 encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
173 encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
174 encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
175 encoding.o: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
176 encoding.o: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
177 encoding.o: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
178 encoding.o: table/gb2312_1980_0.h table/cns11643_1992_1.h
179 encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h
180 encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h
181 encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
182 encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
183 encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
184 encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
185 encoding.o: table/compose.h table/category.h
186 fdpass.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h encoding.h
187 fdpass.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
188 fdpass.o: salloc.h rxvtperl.h hookinc.h rsinc.h fdpass.h
189 init.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h encoding.h
190 init.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
191 init.o: salloc.h rxvtperl.h hookinc.h rsinc.h init.h
192 iom.o: iom.h iom_conf.h rxvtutil.h callback.h
193 keyboard.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
194 keyboard.o: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
195 keyboard.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
196 keyboard.o: command.h
197 logging.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
198 logging.o: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
199 logging.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h logging.h
200 main.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h encoding.h
201 main.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
202 main.o: salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
203 misc.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h encoding.h
204 misc.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
205 misc.o: salloc.h rxvtperl.h hookinc.h rsinc.h
206 netdisp.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
207 netdisp.o: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
208 netdisp.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
209 ptytty.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h encoding.h
210 ptytty.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
211 ptytty.o: salloc.h rxvtperl.h hookinc.h rsinc.h
212 rxvt.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h encoding.h
213 rxvt.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
214 rxvt.o: salloc.h rxvtperl.h hookinc.h rsinc.h
215 rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h fdpass.h rxvt.h rxvtlib.h
216 rxvtc.o: ptytty.h feature.h optinc.h encoding.h rxvtfont.h rxvttoolkit.h
217 rxvtc.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
218 rxvtd.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h encoding.h
219 rxvtd.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
220 rxvtd.o: salloc.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h fdpass.h
221 rxvtdaemon.o: rxvtdaemon.h rxvtutil.h
222 rxvtfont.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
223 rxvtfont.o: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
224 rxvtfont.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h table/linedraw.h
225 rxvtperl.o: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
226 rxvtperl.o: rxvtlib.h ptytty.h feature.h optinc.h encoding.h rxvtfont.h
227 rxvtperl.o: rxvttoolkit.h salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
228 rxvtperl.o: perlxsi.c
229 rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
230 rxvttoolkit.o: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
231 rxvttoolkit.o: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
232 rxvtutil.o: rxvtutil.h
233 salloc.o: salloc.h
234 screen.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h encoding.h
235 screen.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
236 screen.o: salloc.h rxvtperl.h hookinc.h rsinc.h salloc.C
237 scrollbar-next.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
238 scrollbar-next.o: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
239 scrollbar-next.o: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
240 scrollbar-plain.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
241 scrollbar-plain.o: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
242 scrollbar-plain.o: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h
243 scrollbar-plain.o: rsinc.h
244 scrollbar-rxvt.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
245 scrollbar-rxvt.o: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
246 scrollbar-rxvt.o: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
247 scrollbar-xterm.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
248 scrollbar-xterm.o: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
249 scrollbar-xterm.o: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h
250 scrollbar-xterm.o: rsinc.h
251 scrollbar.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
252 scrollbar.o: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
253 scrollbar.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
254 xdefaults.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
255 xdefaults.o: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
256 xdefaults.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h version.h
257 xdefaults.o: keyboard.h
258 xpm.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h encoding.h
259 xpm.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
260 xpm.o: salloc.h rxvtperl.h hookinc.h rsinc.h
261
262 command.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
263 command.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
264 command.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h version.h
265 command.lo: command.h keyboard.h
266 encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
267 encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
268 encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
269 encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
270 encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
271 encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
272 encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
273 encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
274 encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
275 encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
276 encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
277 encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
278 encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
279 encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
280 encoding.lo: table/compose.h table/category.h
281 fdpass.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
282 fdpass.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
283 fdpass.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h fdpass.h
284 init.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h encoding.h
285 init.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
286 init.lo: salloc.h rxvtperl.h hookinc.h rsinc.h init.h
287 iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
288 keyboard.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
289 keyboard.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
290 keyboard.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
291 keyboard.lo: command.h
292 logging.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
293 logging.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
294 logging.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h logging.h
295 main.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h encoding.h
296 main.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
297 main.lo: salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
298 misc.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h encoding.h
299 misc.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
300 misc.lo: salloc.h rxvtperl.h hookinc.h rsinc.h
301 netdisp.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
302 netdisp.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
303 netdisp.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
304 ptytty.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
305 ptytty.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
306 ptytty.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
307 rxvt.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h encoding.h
308 rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
309 rxvt.lo: salloc.h rxvtperl.h hookinc.h rsinc.h
310 rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h fdpass.h rxvt.h rxvtlib.h
311 rxvtc.lo: ptytty.h feature.h optinc.h encoding.h rxvtfont.h rxvttoolkit.h
312 rxvtc.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
313 rxvtd.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h encoding.h
314 rxvtd.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
315 rxvtd.lo: salloc.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h fdpass.h
316 rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
317 rxvtfont.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
318 rxvtfont.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
319 rxvtfont.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
320 rxvtfont.lo: table/linedraw.h
321 rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
322 rxvtperl.lo: rxvtlib.h ptytty.h feature.h optinc.h encoding.h rxvtfont.h
323 rxvtperl.lo: rxvttoolkit.h salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
324 rxvtperl.lo: perlxsi.c
325 rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
326 rxvttoolkit.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
327 rxvttoolkit.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
328 rxvtutil.lo: rxvtutil.h
329 salloc.lo: salloc.h
330 screen.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
331 screen.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
332 screen.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h salloc.C
333 scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
334 scrollbar-next.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
335 scrollbar-next.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h
336 scrollbar-next.lo: rsinc.h
337 scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
338 scrollbar-plain.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
339 scrollbar-plain.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h
340 scrollbar-plain.lo: rsinc.h
341 scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
342 scrollbar-rxvt.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
343 scrollbar-rxvt.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h
344 scrollbar-rxvt.lo: rsinc.h
345 scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
346 scrollbar-xterm.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
347 scrollbar-xterm.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h
348 scrollbar-xterm.lo: rsinc.h
349 scrollbar.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
350 scrollbar.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
351 scrollbar.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
352 xdefaults.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h
353 xdefaults.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
354 xdefaults.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h version.h
355 xdefaults.lo: keyboard.h
356 xpm.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h optinc.h encoding.h
357 xpm.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
358 xpm.lo: salloc.h rxvtperl.h hookinc.h rsinc.h