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