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.124 by ayin, Mon Dec 17 11:49:47 2007 UTC vs.
Revision 1.134 by sf-exg, Thu Jul 22 16:02:47 2010 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines