ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
(Generate patch)

Comparing rxvt-unicode/src/Makefile.in (file contents):
Revision 1.61 by root, Wed Jan 25 10:51:26 2006 UTC vs.
Revision 1.94 by ayin, Wed Jun 13 10:39:09 2007 UTC

17ECHO = @ECHO@ 17ECHO = @ECHO@
18PERL = @PERL@ 18PERL = @PERL@
19INSTALL = @INSTALL@ 19INSTALL = @INSTALL@
20INSTALL_PROGRAM = @INSTALL@ -m 755 20INSTALL_PROGRAM = @INSTALL@ -m 755
21INSTALL_DATA = @INSTALL@ -m 644 21INSTALL_DATA = @INSTALL@ -m 644
22CXXFLAGS = @CXXFLAGS@ 22CXXFLAGS = @CXXFLAGS@
23CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@ 23CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@
24LDFLAGS = @LDFLAGS@ 24LDFLAGS = @LDFLAGS@
25DEFS = @DEFS@ 25DEFS = @DEFS@
26LIBS = @LIBS@ 26LIBS = @LIBS@
27DINCLUDE = @DINCLUDE@ 27DINCLUDE = @DINCLUDE@
28DLIB = @DLIB@ 28DLIB = @DLIB@
29XINC = @X_CFLAGS@ @XPM_CFLAGS@ 29XINC = @X_CFLAGS@ @XPM_CFLAGS@ @LIBAFTERIMAGE_CFLAGS@
30XLIB = @X_LIBS@ @XPM_LIBS@ -lX11 @X_EXTRA_LIBS@ 30XLIB = @X_LIBS@ @XPM_LIBS@ @AFTERIMAGE_LIBS@ -lX11 @X_EXTRA_LIBS@
31COMPILE = $(CXX) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CXXFLAGS) $(DEBUG) $(DINCLUDE) $(XINC) -I$(basedir) -I$(srcdir) -I. 31COMPILE = $(CXX) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CXXFLAGS) $(DEBUG) $(DINCLUDE) $(XINC) -I.. -I$(srcdir) -I.
32LINK = @LINKER@ $(LDFLAGS) 32LINK = @LINKER@ $(LDFLAGS)
33 33
34srcdir = @srcdir@ 34srcdir = @srcdir@
35VPATH = @srcdir@ 35VPATH = @srcdir@
36.PATH: @srcdir@
37
38top_builddir = ..
39basedir = ..
40thisdir = src
41 36
42DEBUG=-DDEBUG_STRICT 37DEBUG=-DDEBUG_STRICT
43 38
44first_rule: all 39first_rule: all
45dummy: 40dummy:
59 54
60# 55#
61# Distribution variables 56# Distribution variables
62# 57#
63 58
64.SUFFIXES: .C .o 59.SUFFIXES: .C .c .o
65 60
66#------------------------------------------------------------------------- 61#-------------------------------------------------------------------------
67# inference rules 62# inference rules
68.C.o: 63.C.o:
69 $(COMPILE) -c $< 64 $(COMPILE) -c $<
110 105
111clean: 106clean:
112 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C 107 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C
113 rm -f *.o *.lo .libs/* librxvt.la tmpproto *.tmp 108 rm -f *.o *.lo .libs/* librxvt.la tmpproto *.tmp
114 109
110distclean: clean
111 rm -f Makefile rxvtlib.h
112
115realclean: clean 113realclean: distclean
116 rm -f tags TAGS librxvt.h 114 rm -f tags TAGS
117 115
118cleandir: realclean 116cleandir: realclean
119
120distclean: realclean
121 (cd $(srcdir); rm -f Makefile)
122 117
123install-perl: 118install-perl:
124@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir) 119@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)
125@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt 120@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
126@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl 121@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl
127@IF_PERL@ $(INSTALL_DATA) urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm 122@IF_PERL@ $(INSTALL_DATA) $(srcdir)/urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
128@IF_PERL@ for ext in perl/*; do test -f "$$ext" && $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/"$$ext"; done 123@IF_PERL@ for ext in $(srcdir)/perl/*; do test -f "$$ext" && $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/"`basename "$$ext"`"; done
129 124
130install: allbin alldoc install-perl 125install-bin: allbin
131 $(INSTALL) -d $(DESTDIR)$(bindir) 126 $(INSTALL) -d $(DESTDIR)$(bindir)
132 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME) 127 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
133 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME) 128 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
134 $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME) 129 $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
135 130
131install: install-bin install-perl
132
136perlxsi.c: Makefile 133perlxsi.c: Makefile
137 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt 134 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
138 135
139rxvtperl.C: rxvtperl.xs typemap 136rxvtperl.C: rxvtperl.xs iom_perl.h iom_perl.xs typemap typemap.iom
140 $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap -prototypes rxvtperl.xs >$@ 137 PERL="$(PERL)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap.iom -typemap typemap -prototypes $(srcdir)/rxvtperl.xs >$@
141 138
142rxvtperl.o: rxvtperl.C perlxsi.c 139rxvtperl.o: rxvtperl.C perlxsi.c
143 $(COMPILE) @PERLFLAGS@ -DLIBDIR="\"$(libdir)/urxvt\"" -c $< 140 $(COMPILE) @PERLFLAGS@ -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
144 141
145depend: 142depend:
147 makedepend -f Makefile.in -I. -Y *.C -a -o .lo >/dev/null 2>&1 144 makedepend -f Makefile.in -I. -Y *.C -a -o .lo >/dev/null 2>&1
148 145
149# DO NOT DELETE: nice dependency list follows 146# DO NOT DELETE: nice dependency list follows
150 147
151command.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 148command.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
152command.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 149command.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
153command.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h 150command.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h version.h
154command.o: command.h keyboard.h 151command.o: command.h keyboard.h
155encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h 152encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
156encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h 153encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
157encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h 154encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
158encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h 155encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
166encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h 163encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
167encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h 164encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
168encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h 165encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
169encoding.o: table/compose.h table/category.h 166encoding.o: table/compose.h table/category.h
170fdpass.o: ../config.h libptytty.h 167fdpass.o: ../config.h libptytty.h
171init.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h 168init.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
172init.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 169init.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h callback.h
173init.o: libptytty.h rxvtperl.h hookinc.h rsinc.h init.h 170init.o: salloc.h rxvtperl.h hookinc.h rsinc.h init.h
174iom.o: iom.h iom_conf.h rxvtutil.h callback.h 171iom.o: iom.h iom_conf.h rxvtutil.h libptytty.h callback.h
175keyboard.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 172keyboard.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
176keyboard.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 173keyboard.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
177keyboard.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h 174keyboard.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
178keyboard.o: command.h 175keyboard.o: command.h
179logging.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h 176logging.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
180logging.o: optinc.h feature.h encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h 177logging.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
181logging.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h 178logging.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
182main.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h 179main.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
183main.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 180main.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h callback.h
184main.o: libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h 181main.o: salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
185misc.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h 182misc.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
186misc.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 183misc.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h callback.h
187misc.o: libptytty.h rxvtperl.h hookinc.h rsinc.h 184misc.o: salloc.h rxvtperl.h hookinc.h rsinc.h
188netdisp.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 185netdisp.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
189netdisp.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 186netdisp.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
190netdisp.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h 187netdisp.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
188proxy.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
189proxy.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
190proxy.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
191ptytty.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h 191ptytty.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
192ptytty.o: optinc.h feature.h encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h 192ptytty.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
193ptytty.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h 193ptytty.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
194rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h 194rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
195rxvt.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 195rxvt.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h callback.h
196rxvt.o: libptytty.h rxvtperl.h hookinc.h rsinc.h 196rxvt.o: salloc.h rxvtperl.h hookinc.h rsinc.h
197rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h 197rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
198rxvtc.o: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h 198rxvtc.o: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
199rxvtc.o: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h 199rxvtc.o: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
200rxvtd.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 200rxvtd.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
201rxvtd.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 201rxvtd.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
202rxvtd.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h 202rxvtd.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
203rxvtdaemon.o: rxvtdaemon.h rxvtutil.h 203rxvtdaemon.o: rxvtdaemon.h rxvtutil.h
204rxvtfont.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 204rxvtfont.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
205rxvtfont.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 205rxvtfont.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
206rxvtfont.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h 206rxvtfont.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h table/linedraw.h
207rxvtfont.o: table/linedraw.h
208rxvtperl.o: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h 207rxvtperl.o: ../config.h iom.h iom_conf.h rxvtutil.h libptytty.h callback.h
209rxvtperl.o: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h 208rxvtperl.o: rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
210rxvtperl.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h 209rxvtperl.o: rxvttoolkit.h salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
211rxvtperl.o: perlxsi.c 210rxvtperl.o: perlxsi.c ./iom_perl.h
212rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 211rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
213rxvttoolkit.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 212rxvttoolkit.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
214rxvttoolkit.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h 213rxvttoolkit.o: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
215rxvtutil.o: rxvtutil.h 214rxvtutil.o: rxvtutil.h
216salloc.o: salloc.h 215salloc.o: salloc.h
217screen.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 216screen.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
218screen.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 217screen.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
219screen.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C 218screen.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h salloc.C
220scrollbar-next.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 219scrollbar-next.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
221scrollbar-next.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 220scrollbar-next.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
222scrollbar-next.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h 221scrollbar-next.o: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h
223scrollbar-next.o: rsinc.h 222scrollbar-next.o: rsinc.h
224scrollbar-plain.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 223scrollbar-plain.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
225scrollbar-plain.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 224scrollbar-plain.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
226scrollbar-plain.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h 225scrollbar-plain.o: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h
227scrollbar-plain.o: rsinc.h 226scrollbar-plain.o: rsinc.h
228scrollbar-rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 227scrollbar-rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
229scrollbar-rxvt.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 228scrollbar-rxvt.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
230scrollbar-rxvt.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h 229scrollbar-rxvt.o: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h
231scrollbar-rxvt.o: rsinc.h 230scrollbar-rxvt.o: rsinc.h
232scrollbar-xterm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 231scrollbar-xterm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
233scrollbar-xterm.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 232scrollbar-xterm.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
234scrollbar-xterm.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h 233scrollbar-xterm.o: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h
235scrollbar-xterm.o: rsinc.h 234scrollbar-xterm.o: rsinc.h
236scrollbar.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 235scrollbar.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
237scrollbar.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 236scrollbar.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
238scrollbar.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h 237scrollbar.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
239xdefaults.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 238xdefaults.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
240xdefaults.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 239xdefaults.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
241xdefaults.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h 240xdefaults.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h version.h
242xdefaults.o: keyboard.h 241xdefaults.o: keyboard.h
243xpm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h 242xpm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
244xpm.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 243xpm.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h callback.h
245xpm.o: libptytty.h rxvtperl.h hookinc.h rsinc.h 244xpm.o: salloc.h rxvtperl.h hookinc.h rsinc.h
246 245
247command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 246command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
248command.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 247command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
249command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h 248command.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h version.h
250command.lo: command.h keyboard.h 249command.lo: command.h keyboard.h
251encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h 250encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
252encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h 251encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
253encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h 252encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
254encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h 253encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
263encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h 262encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
264encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h 263encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
265encoding.lo: table/compose.h table/category.h 264encoding.lo: table/compose.h table/category.h
266fdpass.lo: ../config.h libptytty.h 265fdpass.lo: ../config.h libptytty.h
267init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 266init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
268init.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 267init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
269init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h 268init.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h init.h
270iom.lo: iom.h iom_conf.h rxvtutil.h callback.h 269iom.lo: iom.h iom_conf.h rxvtutil.h libptytty.h callback.h
271keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 270keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
272keyboard.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 271keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
273keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h 272keyboard.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
274keyboard.lo: command.h 273keyboard.lo: command.h
275logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h 274logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
276logging.lo: optinc.h feature.h encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h 275logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
277logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h 276logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
278main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 277main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
279main.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 278main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
280main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h 279main.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
281misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 280misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
282misc.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 281misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
283misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h 282misc.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
284netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 283netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
285netdisp.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 284netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
286netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h 285netdisp.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
286proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
287proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
288proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
287ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h 289ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
288ptytty.lo: optinc.h feature.h encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h 290ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
289ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h 291ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
290rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 292rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
291rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 293rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
292rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h 294rxvt.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
293rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h 295rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
294rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h 296rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
295rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h 297rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
296rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 298rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
297rxvtd.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 299rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
298rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h 300rxvtd.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
299rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h 301rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
300rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 302rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
301rxvtfont.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 303rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
302rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h 304rxvtfont.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
303rxvtfont.lo: table/linedraw.h 305rxvtfont.lo: table/linedraw.h
304rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h 306rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h libptytty.h callback.h
305rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h 307rxvtperl.lo: rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
306rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h 308rxvtperl.lo: rxvttoolkit.h salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
307rxvtperl.lo: perlxsi.c 309rxvtperl.lo: perlxsi.c ./iom_perl.h
308rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 310rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
309rxvttoolkit.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 311rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
310rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h 312rxvttoolkit.lo: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
311rxvtutil.lo: rxvtutil.h 313rxvtutil.lo: rxvtutil.h
312salloc.lo: salloc.h 314salloc.lo: salloc.h
313screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 315screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
314screen.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 316screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
315screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C 317screen.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h salloc.C
316scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 318scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
317scrollbar-next.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 319scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
318scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h 320scrollbar-next.lo: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h
319scrollbar-next.lo: rsinc.h 321scrollbar-next.lo: rsinc.h
320scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h 322scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
321scrollbar-plain.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h 323scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
322scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h 324scrollbar-plain.lo: iom_conf.h libptytty.h callback.h salloc.h rxvtperl.h
323scrollbar-plain.lo: hookinc.h rsinc.h 325scrollbar-plain.lo: hookinc.h rsinc.h
324scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 326scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
325scrollbar-rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 327scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
326scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h 328scrollbar-rxvt.lo: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h
327scrollbar-rxvt.lo: rsinc.h 329scrollbar-rxvt.lo: rsinc.h
328scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h 330scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
329scrollbar-xterm.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h 331scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
330scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h 332scrollbar-xterm.lo: iom_conf.h libptytty.h callback.h salloc.h rxvtperl.h
331scrollbar-xterm.lo: hookinc.h rsinc.h 333scrollbar-xterm.lo: hookinc.h rsinc.h
332scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 334scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
333scrollbar.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 335scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
334scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h 336scrollbar.lo: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
335xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 337xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
336xdefaults.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 338xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
337xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h 339xdefaults.lo: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
338xdefaults.lo: keyboard.h 340xdefaults.lo: version.h keyboard.h
339xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h 341xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
340xpm.lo: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 342xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h callback.h
341xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h 343xpm.lo: salloc.h rxvtperl.h hookinc.h rsinc.h

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines