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.125 by root, Wed Dec 19 02:17:34 2007 UTC vs.
Revision 1.142 by root, Mon May 2 09:51:21 2011 UTC

17CXXFLAGS = @CXXFLAGS@ 17CXXFLAGS = @CXXFLAGS@
18CPPFLAGS = @CPPFLAGS@ 18CPPFLAGS = @CPPFLAGS@
19LDFLAGS = @LDFLAGS@ 19LDFLAGS = @LDFLAGS@
20DEFS = @DEFS@ 20DEFS = @DEFS@
21LIBS = @LIBS@ 21LIBS = @LIBS@
22XINC = @X_CFLAGS@ @AFTERIMAGE_CFLAGS@ 22XINC = @X_CFLAGS@ @AFTERIMAGE_CFLAGS@ @PIXBUF_CFLAGS@
23XLIB = @X_LIBS@ @AFTERIMAGE_LIBS@ -lX11 @X_EXTRA_LIBS@ 23XLIB = @X_LIBS@ @AFTERIMAGE_LIBS@ -lX11 @X_EXTRA_LIBS@ @PIXBUF_LIBS@
24COMPILE = $(CXX) -I.. -I$(srcdir) -I. -I$(srcdir)/../libev $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(DEBUG) $(XINC) 24COMPILE = $(CXX) -I.. -I$(srcdir) -I. -I$(srcdir)/../libev $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(XINC)
25LINK = @LINKER@ $(LDFLAGS) 25LINK = @LINKER@ $(LDFLAGS)
26EXEEXT = @EXEEXT@
27PERLFLAGS = @PERLFLAGS@
28PERLLIB = @PERLLIB@
26 29
27srcdir = @srcdir@ 30srcdir = @srcdir@
28VPATH = @srcdir@ 31VPATH = @srcdir@
29
30DEBUG=-DDEBUG_STRICT
31 32
32first_rule: all 33first_rule: all
33dummy: 34dummy:
34 35
35COMMON = \ 36COMMON = \
39 rxvttoolkit.o rxvtutil.o keyboard.o \ 40 rxvttoolkit.o rxvtutil.o keyboard.o \
40 fdpass.o ev_cpp.o @PERL_O@ 41 fdpass.o ev_cpp.o @PERL_O@
41 42
42COMMON_DAEMON = rxvtdaemon.o 43COMMON_DAEMON = rxvtdaemon.o
43 44
44RXVT_BASENAME=`echo $(RXVTNAME)|sed 's/$(EXEEXT)$$//'|sed '$(transform)'`
45RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)$(EXEEXT) 45RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)$(EXEEXT)
46RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)c$(EXEEXT) 46RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)c$(EXEEXT)
47RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)d$(EXEEXT) 47RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)d$(EXEEXT)
48 48
49# 49#
50# Distribution variables 50# Distribution variables
51# 51#
52 52
55#------------------------------------------------------------------------- 55#-------------------------------------------------------------------------
56# inference rules 56# inference rules
57.C.o: 57.C.o:
58 $(COMPILE) -c $< 58 $(COMPILE) -c $<
59 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#------------------------------------------------------------------------- 60#-------------------------------------------------------------------------
70 61
71all: allbin 62all: allbin
72 63
73rxvt: rxvt.o $(COMMON) 64rxvt: rxvt.o $(COMMON)
74 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) @PERLLIB@ 65 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) $(PERLLIB)
75# $(LIBTOOL) --mode=link $(LINK) rxvt.o librxvt.la $(LIBS) $(XLIB) -o $@
76 66
77rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON) 67rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON)
78 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) @PERLLIB@ 68 $(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 69
81rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass.o ev_cpp.o 70rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass.o
82 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass.o ev_cpp.o $(LIBS) 71 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass.o $(LIBS)
83# $(LIBTOOL) --mode=link $(LINK) rxvtc.o rxvtdaemon.o $(LIBS) -o $@
84
85#librxvt.la: $(LIBOBJS)
86# $(LIBTOOL) --mode=link $(LINK) -rpath $(libdir) -version-info $(LIBVERSION) $(LIBOBJS) $(LIBS) -o $@
87 72
88#------------------------------------------------------------------------- 73#-------------------------------------------------------------------------
89 74
90#EXUBERANT_OPTS = -I NOTHROW 75#EXUBERANT_OPTS = -I NOTHROW
91 76
99 84
100alldoc: 85alldoc:
101 86
102clean: 87clean:
103 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C 88 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C
104 rm -f *.o *.lo .libs/* librxvt.la tmpproto *.tmp 89 rm -f *.o
105 90
106distclean: clean 91distclean: clean
107 rm -f Makefile rxvtlib.h 92 rm -f Makefile
108 93
109realclean: distclean 94realclean: distclean
110 rm -f tags TAGS 95 rm -f tags TAGS
111 96
112cleandir: realclean 97cleandir: realclean
114install-perl: 99install-perl:
115@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir) 100@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)
116@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt 101@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
117@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl 102@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl
118@IF_PERL@ $(INSTALL_DATA) $(srcdir)/urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm 103@IF_PERL@ $(INSTALL_DATA) $(srcdir)/urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
119@IF_PERL@ for ext in $(srcdir)/perl/*; do test -f "$$ext" && $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/"`basename "$$ext"`"; done 104@IF_PERL@ for ext in $(srcdir)/perl/*; do test -f "$$ext" && $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/; done
120 105
121install-bin: allbin 106install-bin: allbin
122 $(INSTALL) -d $(DESTDIR)$(bindir) 107 $(INSTALL) -d $(DESTDIR)$(bindir)
123 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME) 108 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
124 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME) 109 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
131 116
132rxvtperl.C: rxvtperl.xs iom_perl.h iom_perl.xs typemap typemap.iom 117rxvtperl.C: rxvtperl.xs iom_perl.h iom_perl.xs typemap typemap.iom
133 PERL="$(PERL)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap.iom -typemap typemap -prototypes $(srcdir)/rxvtperl.xs >$@ 118 PERL="$(PERL)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap.iom -typemap typemap -prototypes $(srcdir)/rxvtperl.xs >$@
134 119
135rxvtperl.o: rxvtperl.C perlxsi.c 120rxvtperl.o: rxvtperl.C perlxsi.c
136 $(COMPILE) @PERLFLAGS@ -DLIBDIR="\"$(libdir)/urxvt\"" -c $< 121 $(COMPILE) $(PERLFLAGS) -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
137 122
138depend: 123depend:
139 makedepend -f Makefile.in -I. -I.. -I../libev -Y *.C >/dev/null 2>&1 124 makedepend -f Makefile.in -I. -I.. -I../libev -Y *.C >/dev/null 2>&1
140# makedepend -f Makefile.in -I. -Y *.C -a -o .lo >/dev/null 2>&1
141 125
142# DO NOT DELETE: nice dependency list follows 126# DO NOT DELETE: nice dependency list follows
143 127
144background.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 128background.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
145background.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h 129background.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
146background.o: ../libev/ev.h callback.h salloc.h libptytty.h rxvtperl.h 130background.o: ../libev/ev.h callback.h scrollbar.h salloc.h libptytty.h
147background.o: hookinc.h background.h rsinc.h 131background.o: rxvtperl.h hookinc.h rsinc.h optinc.h
148command.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 132command.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
149command.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h 133command.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
150command.o: ../libev/ev.h callback.h salloc.h libptytty.h rxvtperl.h hookinc.h 134command.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h
151command.o: background.h rsinc.h version.h command.h keyboard.h 135command.o: rsinc.h optinc.h version.h command.h keyboard.h
152encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h 136encoding.o: ../config.h encoding.h rxvtutil.h table/iso8859_1.h
153encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
154encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h 137encoding.o: table/iso8859_15.h table/iso8859_2.h table/iso8859_3.h
155encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h 138encoding.o: table/iso8859_4.h table/iso8859_5.h table/iso8859_6.h
156encoding.o: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h 139encoding.o: table/iso8859_7.h table/iso8859_8.h table/iso8859_9.h
157encoding.o: table/iso8859_16.h table/koi8_r.h table/koi8_u.h 140encoding.o: table/iso8859_10.h table/iso8859_11.h table/iso8859_13.h
141encoding.o: table/iso8859_14.h table/iso8859_16.h table/koi8_r.h
158encoding.o: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h 142encoding.o: table/koi8_u.h table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
159encoding.o: table/gb2312_1980_0.h table/cns11643_1992_1.h 143encoding.o: table/gb2312_1980_0.h table/cns11643_1992_1.h
160encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h 144encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h
161encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h 145encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h
162encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h 146encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
163encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h 147encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
164encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h 148encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
165encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h 149encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
166encoding.o: table/compose.h table/category.h 150encoding.o: table/compose.h table/category.h
167ev_cpp.o: ev_cpp.h ../libev/ev++.h ../libev/ev.h ../libev/ev.c ../config.h 151ev_cpp.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h ../libev/ev.c
168ev_cpp.o: ../libev/ev_vars.h ../libev/ev_epoll.c ../libev/ev_select.c 152ev_cpp.o: ../libev/ev_vars.h ../libev/ev_epoll.c ../libev/ev_select.c
169fdpass.o: ../config.h libptytty.h 153fdpass.o: ../config.h libptytty.h
170init.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h 154init.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
171init.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h ../libev/ev.h 155init.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
172init.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h background.h 156init.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h
173init.o: rsinc.h init.h 157init.o: rsinc.h optinc.h init.h keyboard.h
174keyboard.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 158keyboard.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
175keyboard.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h 159keyboard.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
176keyboard.o: ../libev/ev.h callback.h salloc.h libptytty.h rxvtperl.h 160keyboard.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h
177keyboard.o: hookinc.h background.h rsinc.h keyboard.h command.h 161keyboard.o: rsinc.h optinc.h keyboard.h command.h
178logging.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h 162logging.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h feature.h
179logging.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h 163logging.o: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h
180logging.o: ev_cpp.h ../libev/ev++.h ../libev/ev.h callback.h salloc.h 164logging.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h
181logging.o: rxvtperl.h hookinc.h background.h rsinc.h 165logging.o: rxvtperl.h hookinc.h rsinc.h optinc.h
182main.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h 166main.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
183main.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h ../libev/ev.h 167main.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
184main.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h background.h 168main.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h
185main.o: rsinc.h keyboard.h 169main.o: rsinc.h optinc.h init.h keyboard.h
186misc.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h 170misc.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
187misc.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h ../libev/ev.h 171misc.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
188misc.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h background.h 172misc.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h
189misc.o: rsinc.h 173misc.o: rsinc.h optinc.h
190proxy.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h 174proxy.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h feature.h
191proxy.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h 175proxy.o: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h
192proxy.o: ev_cpp.h ../libev/ev++.h ../libev/ev.h callback.h salloc.h 176proxy.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h
193proxy.o: rxvtperl.h hookinc.h background.h rsinc.h 177proxy.o: rxvtperl.h hookinc.h rsinc.h optinc.h
194ptytty.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h 178ptytty.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h feature.h
195ptytty.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h 179ptytty.o: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h
196ptytty.o: ev_cpp.h ../libev/ev++.h ../libev/ev.h callback.h salloc.h 180ptytty.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h
197ptytty.o: rxvtperl.h hookinc.h background.h rsinc.h 181ptytty.o: rxvtperl.h hookinc.h rsinc.h optinc.h
198rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h 182rxvt.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
199rxvt.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h ../libev/ev.h 183rxvt.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
200rxvt.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h background.h 184rxvt.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h
201rxvt.o: rsinc.h 185rxvt.o: rsinc.h optinc.h
202rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h 186rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h
203rxvtc.o: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h ev_cpp.h 187rxvtd.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
204rxvtc.o: ../libev/ev++.h ../libev/ev.h callback.h salloc.h rxvtperl.h 188rxvtd.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
205rxvtc.o: hookinc.h background.h rsinc.h
206rxvtd.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
207rxvtd.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h
208rxvtd.o: ../libev/ev.h callback.h salloc.h libptytty.h rxvtperl.h hookinc.h 189rxvtd.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h
209rxvtd.o: background.h rsinc.h rxvtdaemon.h 190rxvtd.o: rsinc.h optinc.h rxvtdaemon.h
210rxvtdaemon.o: rxvtdaemon.h rxvtutil.h 191rxvtdaemon.o: rxvtdaemon.h rxvtutil.h
211rxvtfont.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 192rxvtfont.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
212rxvtfont.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h 193rxvtfont.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
213rxvtfont.o: ../libev/ev.h callback.h salloc.h libptytty.h rxvtperl.h 194rxvtfont.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h
214rxvtfont.o: hookinc.h background.h rsinc.h table/linedraw.h 195rxvtfont.o: rsinc.h optinc.h table/linedraw.h
215rxvtperl.o: ../config.h ev_cpp.h ../libev/ev++.h ../libev/ev.h rxvt.h 196rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
216rxvtperl.o: rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h 197rxvtperl.o: rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
217rxvtperl.o: rxvttoolkit.h callback.h salloc.h libptytty.h rxvtperl.h 198rxvtperl.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h
218rxvtperl.o: hookinc.h background.h rsinc.h keyboard.h perlxsi.c ./iom_perl.h 199rxvtperl.o: rsinc.h optinc.h keyboard.h perlxsi.c iom_perl.h
219rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 200rxvttoolkit.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
220rxvttoolkit.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h 201rxvttoolkit.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
221rxvttoolkit.o: ../libev/ev.h callback.h salloc.h libptytty.h rxvtperl.h 202rxvttoolkit.o: ../libev/ev.h callback.h scrollbar.h salloc.h libptytty.h
222rxvttoolkit.o: hookinc.h background.h rsinc.h 203rxvttoolkit.o: rxvtperl.h hookinc.h rsinc.h optinc.h
223rxvtutil.o: rxvtutil.h 204rxvtutil.o: rxvtutil.h
224salloc.o: salloc.h 205salloc.o: salloc.h
225screen.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 206screen.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
226screen.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h 207screen.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
227screen.o: ../libev/ev.h callback.h salloc.h libptytty.h rxvtperl.h hookinc.h 208screen.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h
228screen.o: background.h rsinc.h salloc.C 209screen.o: rsinc.h optinc.h salloc.C
229scrollbar-next.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 210scrollbar-next.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
230scrollbar-next.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h 211scrollbar-next.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
231scrollbar-next.o: ../libev/ev++.h ../libev/ev.h callback.h salloc.h 212scrollbar-next.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h
232scrollbar-next.o: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h 213scrollbar-next.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
233scrollbar-plain.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 214scrollbar-plain.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
234scrollbar-plain.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h 215scrollbar-plain.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
235scrollbar-plain.o: ../libev/ev++.h ../libev/ev.h callback.h salloc.h 216scrollbar-plain.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h
236scrollbar-plain.o: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h 217scrollbar-plain.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
237scrollbar-rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 218scrollbar-rxvt.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
238scrollbar-rxvt.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h 219scrollbar-rxvt.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
239scrollbar-rxvt.o: ../libev/ev++.h ../libev/ev.h callback.h salloc.h 220scrollbar-rxvt.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h
240scrollbar-rxvt.o: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h 221scrollbar-rxvt.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
241scrollbar-xterm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 222scrollbar-xterm.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
242scrollbar-xterm.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h 223scrollbar-xterm.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
243scrollbar-xterm.o: ../libev/ev++.h ../libev/ev.h callback.h salloc.h 224scrollbar-xterm.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h
244scrollbar-xterm.o: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h 225scrollbar-xterm.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
245scrollbar.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 226scrollbar.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
246scrollbar.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h 227scrollbar.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
247scrollbar.o: ../libev/ev.h callback.h salloc.h libptytty.h rxvtperl.h 228scrollbar.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h
248scrollbar.o: hookinc.h background.h rsinc.h 229scrollbar.o: rsinc.h optinc.h
249xdefaults.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 230xdefaults.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
250xdefaults.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h 231xdefaults.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
251xdefaults.o: ../libev/ev.h callback.h salloc.h libptytty.h rxvtperl.h 232xdefaults.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h
252xdefaults.o: hookinc.h background.h rsinc.h version.h keyboard.h 233xdefaults.o: rsinc.h optinc.h version.h keyboard.h

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines