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