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