ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.50
Committed: Tue Jan 17 10:14:26 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.49: +2 -2 lines
Log Message:
*** empty log message ***

File Contents

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