ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.55
Committed: Sat Jan 21 19:50:53 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.54: +3 -3 lines
Log Message:
*** empty log message ***

File Contents

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