ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.98
Committed: Wed Jun 13 12:42:28 2007 UTC (16 years, 11 months ago) by ayin
Branch: MAIN
Changes since 1.97: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

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