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.186 by root, Mon May 10 00:47:35 2021 UTC vs.
Revision 1.194 by root, Mon Nov 22 15:43:26 2021 UTC

17INSTALL_PROGRAM = @INSTALL@ -m 755 17INSTALL_PROGRAM = @INSTALL@ -m 755
18INSTALL_DATA = @INSTALL@ -m 644 18INSTALL_DATA = @INSTALL@ -m 644
19CXXFLAGS = @CXXFLAGS@ 19CXXFLAGS = @CXXFLAGS@
20CPPFLAGS = @CPPFLAGS@ 20CPPFLAGS = @CPPFLAGS@
21LDFLAGS = @LDFLAGS@ 21LDFLAGS = @LDFLAGS@
22DEFS = @DEFS@ 22DEFS = @DEFS@ @PTYTTY_CFLAGS@
23LIBS = @LIBS@ 23LIBS = @LIBS@ @PTYTTY_LIBS@
24XINC = @X_CFLAGS@ @PIXBUF_CFLAGS@ @STARTUP_NOTIFICATION_CFLAGS@ 24XINC = @X_CFLAGS@ @PIXBUF_CFLAGS@ @STARTUP_NOTIFICATION_CFLAGS@
25XLIB = @X_LIBS@ -lX11 @X_EXTRA_LIBS@ @PIXBUF_LIBS@ @STARTUP_NOTIFICATION_LIBS@ 25XLIB = @X_LIBS@ -lX11 @X_EXTRA_LIBS@ @PIXBUF_LIBS@ @STARTUP_NOTIFICATION_LIBS@
26COMPILE = $(CXX) -I.. -I$(srcdir) -I. -I$(srcdir)/../libev -I$(srcdir)/../libptytty/src $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(XINC) 26COMPILE = $(CXX) -I.. -I$(srcdir) -I. -I$(srcdir)/../libev $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(XINC)
27LINK = @LINKER@ $(LDFLAGS) 27LINK = @LINKER@ $(LDFLAGS)
28EXEEXT = @EXEEXT@ 28EXEEXT = @EXEEXT@
29PERLFLAGS = @PERLFLAGS@ 29PERLFLAGS = @PERLFLAGS@
30PERLLIB = @PERLLIB@ 30PERLLIB = @PERLLIB@
31 31
38COMMON = \ 38COMMON = \
39 command.o rxvtfont.o init.o main.o misc.o \ 39 command.o rxvtfont.o init.o main.o misc.o \
40 screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \ 40 screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \
41 scrollbar-xterm.o scrollbar-plain.o xdefaults.o encoding.o \ 41 scrollbar-xterm.o scrollbar-plain.o xdefaults.o encoding.o \
42 rxvttoolkit.o rxvtutil.o keyboard.o rxvtimg.o \ 42 rxvttoolkit.o rxvtutil.o keyboard.o rxvtimg.o \
43 ev_cpp.o fdpass_wrapper.o ptytty_wrapper.o @PERL_O@ 43 ev_cpp.o @PERL_O@
44 44
45COMMON_DAEMON = rxvtdaemon.o 45COMMON_DAEMON = rxvtdaemon.o
46 46
47RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)$(EXEEXT) 47RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)$(EXEEXT)
48RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)c$(EXEEXT) 48RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)c$(EXEEXT)
49RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)d$(EXEEXT) 49RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)d$(EXEEXT)
50RCLOCK_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)clock$(EXEEXT) 50RCLOCK_BINNAME=$(DESTDIR)$(bindir)/urclock$(EXEEXT)
51
52x:
53 echo $(RCLOCK_BINNAME)
54 51
55# 52#
56# Distribution variables 53# Distribution variables
57# 54#
58 55
71 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) $(PERLLIB) 68 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) $(PERLLIB)
72 69
73rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON) 70rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON)
74 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) $(PERLLIB) 71 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) $(PERLLIB)
75 72
76rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o 73rxvtc: rxvtc.o $(COMMON_DAEMON)
77 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o $(LIBS) 74 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) $(LIBS)
78 75
79rclock: rclock.o 76rclock: rclock.o
80 $(LINK) -o $@ rclock.o $(LIBS) $(XLIB) 77 $(LINK) -o $@ rclock.o $(LIBS) $(XLIB)
81 78
82#------------------------------------------------------------------------- 79#-------------------------------------------------------------------------
83 80
84#EXUBERANT_OPTS = -I NOTHROW -I THROW
85
86tags: *.[Ch] 81tags: *.[Ch]
87 ctags $(EXUBERANT_OPTS) *.[Ch] 82 ctags *.[Ch]
88 83
89TAGS: *.[Ch] 84TAGS: *.[Ch]
90 etags $(EXUBERANT_OPTS) *.[Ch] 85 etags *.[Ch]
91 86
92allbin: rxvt rxvtd rxvtc 87allbin: rxvt rxvtd rxvtc rclock
93 88
94alldoc: 89alldoc:
95 90
96clean: 91clean:
97 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C manlst mantmp 92 rm -f rxvt rxvtc rxvtd rclock perlxsi.c rxvtperl.C manlst mantmp
98 rm -f *.o 93 rm -f *.o
99 94
100distclean: clean 95distclean: clean
101 rm -f Makefile 96 rm -f Makefile
102 97
134install-bin: allbin 129install-bin: allbin
135 $(INSTALL) -d $(DESTDIR)$(bindir) 130 $(INSTALL) -d $(DESTDIR)$(bindir)
136 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME) 131 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
137 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME) 132 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
138 $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME) 133 $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
134 $(INSTALL_PROGRAM) rclock $(RCLOCK_BINNAME)
139 135
140install: install-bin install-perl 136install: install-bin install-perl
141 137
142perlxsi.c: Makefile 138perlxsi.c: Makefile
143 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt 139 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
147 143
148rxvtperl.o: rxvtperl.C perlxsi.c 144rxvtperl.o: rxvtperl.C perlxsi.c
149 $(COMPILE) $(PERLFLAGS) -DLIBDIR="\"$(libdir)/urxvt\"" -c $< 145 $(COMPILE) $(PERLFLAGS) -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
150 146
151depend: 147depend:
152 makedepend -f Makefile.in -I. -I.. -I../libptytty/src -I../libev -Y *.C *.xs >/dev/null 2>&1 148 makedepend -f Makefile.in -I. -I.. -I../libev -Y *.C *.xs >/dev/null 2>&1
153 149
154# makedepend has trouble finding these 150# makedepend has trouble finding these
155ev_cpp.o: ../libev/ev.c ../libev/ev_epoll.c ../libev/ev_kqueue.c ../libev/ev_linuxaio.c 151ev_cpp.o: ../libev/ev.c ../libev/ev_epoll.c ../libev/ev_kqueue.c ../libev/ev_linuxaio.c
156ev_cpp.o: ../libev/ev_poll.c ../libev/ev_port.c ../libev/ev_select.c ../libev/ev_win32.c 152ev_cpp.o: ../libev/ev_poll.c ../libev/ev_port.c ../libev/ev_select.c ../libev/ev_win32.c
157 153
158 154
159# DO NOT DELETE: nice dependency list follows 155# DO NOT DELETE: nice dependency list follows
160 156
161command.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h 157command.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
162command.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h 158command.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
163command.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 159command.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h scrollbar.h
164command.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
165command.o: rxvtperl.h hookinc.h rsinc.h optinc.h version.h command.h 160command.o: rxvtperl.h hookinc.h rsinc.h optinc.h version.h command.h
166command.o: keyboard.h 161command.o: keyboard.h
167encoding.o: ../config.h encoding.h rxvtutil.h ../libptytty/src/ecb.h 162encoding.o: ../config.h encoding.h rxvtutil.h ecb.h estl.h emman.h
168encoding.o: ../libptytty/src/estl.h emman.h table/iso8859_1.h
169encoding.o: table/iso8859_15.h table/iso8859_2.h table/iso8859_3.h
170encoding.o: table/iso8859_4.h table/iso8859_5.h table/iso8859_6.h 163encoding.o: table/iso8859_1.h table/iso8859_15.h table/iso8859_2.h
171encoding.o: table/iso8859_7.h table/iso8859_8.h table/iso8859_9.h 164encoding.o: table/iso8859_3.h table/iso8859_4.h table/iso8859_5.h
172encoding.o: table/iso8859_10.h table/iso8859_11.h table/iso8859_13.h 165encoding.o: table/iso8859_6.h table/iso8859_7.h table/iso8859_8.h
173encoding.o: table/iso8859_14.h table/iso8859_16.h table/koi8_r.h 166encoding.o: table/iso8859_9.h table/iso8859_10.h table/iso8859_11.h
167encoding.o: table/iso8859_13.h table/iso8859_14.h table/iso8859_16.h
174encoding.o: table/koi8_u.h table/ksc5601_1987_0.h table/big5.h table/gbk_0.h 168encoding.o: table/koi8_r.h table/koi8_u.h table/ksc5601_1987_0.h table/big5.h
175encoding.o: table/gb2312_1980_0.h table/cns11643_1992_1.h 169encoding.o: table/gbk_0.h table/gb2312_1980_0.h table/cns11643_1992_1.h
176encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h 170encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h
177encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h 171encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h
178encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h 172encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
179encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h 173encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
180encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h 174encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
181encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h 175encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
182encoding.o: table/compose.h table/category.h 176encoding.o: table/compose.h table/category.h
183ev_cpp.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h ../libev/ev.c 177ev_cpp.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h ../libev/ev.c
184ev_cpp.o: ../libev/ev_vars.h ../libev/ev_epoll.c ../libev/ev_select.c 178ev_cpp.o: ../libev/ev_vars.h ../libev/ev_epoll.c ../libev/ev_select.c
185fdpass_wrapper.o: ../libptytty/src/fdpass.C ../config.h
186fdpass_wrapper.o: ../libptytty/src/libptytty.h
187init.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h 179init.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
188init.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h 180init.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
189init.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h 181init.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h rxvtperl.h hookinc.h
190init.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
191init.o: hookinc.h rsinc.h optinc.h init.h keyboard.h 182init.o: rsinc.h optinc.h init.h keyboard.h
192keyboard.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h 183keyboard.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
193keyboard.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h 184keyboard.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
194keyboard.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 185keyboard.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h scrollbar.h
195keyboard.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
196keyboard.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h 186keyboard.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h
197main.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h 187main.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
198main.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h 188main.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
199main.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h 189main.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h rxvtperl.h hookinc.h
200main.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
201main.o: hookinc.h rsinc.h optinc.h init.h keyboard.h 190main.o: rsinc.h optinc.h init.h keyboard.h
202misc.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h 191misc.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
203misc.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h 192misc.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
204misc.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h 193misc.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h rxvtperl.h hookinc.h
205misc.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
206misc.o: hookinc.h rsinc.h optinc.h 194misc.o: rsinc.h optinc.h
207ptytty_wrapper.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h 195rclock.o: ecb.h version.h
208ptytty_wrapper.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
209ptytty_wrapper.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h
210ptytty_wrapper.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
211ptytty_wrapper.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
212ptytty_wrapper.o: optinc.h ../libptytty/src/logging.C
213ptytty_wrapper.o: ../libptytty/src/ptytty.h ../libptytty/src/ptytty_conf.h
214ptytty_wrapper.o: ../libptytty/src/proxy.C ../libptytty/src/ptytty.C
215rxvt.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h 196rxvt.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
216rxvt.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h 197rxvt.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
217rxvt.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h 198rxvt.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h rxvtperl.h hookinc.h
218rxvt.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
219rxvt.o: hookinc.h rsinc.h optinc.h 199rxvt.o: rsinc.h optinc.h
220rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h ../libptytty/src/ecb.h 200rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h ecb.h estl.h emman.h
221rxvtc.o: ../libptytty/src/estl.h emman.h ../libptytty/src/libptytty.h
222rxvtd.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h 201rxvtd.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
223rxvtd.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h 202rxvtd.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
224rxvtd.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h 203rxvtd.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h scrollbar.h
225rxvtd.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
226rxvtd.o: hookinc.h rsinc.h optinc.h rxvtdaemon.h 204rxvtd.o: rxvtperl.h hookinc.h rsinc.h optinc.h rxvtdaemon.h
227rxvtdaemon.o: rxvtdaemon.h rxvtutil.h ../libptytty/src/ecb.h 205rxvtdaemon.o: rxvtdaemon.h rxvtutil.h ecb.h estl.h emman.h
228rxvtdaemon.o: ../libptytty/src/estl.h emman.h
229rxvtfont.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h 206rxvtfont.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
230rxvtfont.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h 207rxvtfont.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
231rxvtfont.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 208rxvtfont.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h scrollbar.h
232rxvtfont.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
233rxvtfont.o: rxvtperl.h hookinc.h rsinc.h optinc.h table/linedraw.h 209rxvtfont.o: rxvtperl.h hookinc.h rsinc.h optinc.h table/linedraw.h
234rxvtimg.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h 210rxvtimg.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
235rxvtimg.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h 211rxvtimg.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
236rxvtimg.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 212rxvtimg.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h scrollbar.h
237rxvtimg.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
238rxvtimg.o: rxvtperl.h hookinc.h rsinc.h optinc.h 213rxvtimg.o: rxvtperl.h hookinc.h rsinc.h optinc.h
239rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 214rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
240rxvtperl.o: rxvt.h feature.h ../libptytty/src/ecb.h encoding.h rxvtutil.h 215rxvtperl.o: rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h emman.h
241rxvtperl.o: ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h 216rxvtperl.o: rxvtfont.h rxvttoolkit.h callback.h rxvtimg.h scrollbar.h
242rxvtperl.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
243rxvtperl.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h perlxsi.c 217rxvtperl.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h perlxsi.c
244rxvtperl.o: iom_perl.h 218rxvtperl.o: iom_perl.h
245rxvttoolkit.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h 219rxvttoolkit.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h
246rxvttoolkit.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h 220rxvttoolkit.o: estl.h emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
247rxvttoolkit.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
248rxvttoolkit.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h 221rxvttoolkit.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h scrollbar.h
249rxvttoolkit.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h 222rxvttoolkit.o: rxvtperl.h hookinc.h rsinc.h optinc.h
250rxvttoolkit.o: optinc.h
251rxvtutil.o: emman.c emman.h ../libptytty/src/ecb.h rxvtutil.h 223rxvtutil.o: emman.c emman.h ecb.h rxvtutil.h estl.h
252rxvtutil.o: ../libptytty/src/estl.h
253screen.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h 224screen.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
254screen.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h 225screen.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
255screen.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h 226screen.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h scrollbar.h
256screen.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
257screen.o: hookinc.h rsinc.h optinc.h 227screen.o: rxvtperl.h hookinc.h rsinc.h optinc.h
258scrollbar-next.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h 228scrollbar-next.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h
259scrollbar-next.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h 229scrollbar-next.o: estl.h emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h
230scrollbar-next.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h
231scrollbar-next.o: rxvtimg.h scrollbar.h rxvtperl.h hookinc.h rsinc.h optinc.h
232scrollbar-plain.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h
233scrollbar-plain.o: estl.h emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h
234scrollbar-plain.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h
235scrollbar-plain.o: rxvtimg.h scrollbar.h rxvtperl.h hookinc.h rsinc.h
236scrollbar-plain.o: optinc.h
237scrollbar-rxvt.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h
238scrollbar-rxvt.o: estl.h emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h
239scrollbar-rxvt.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h
240scrollbar-rxvt.o: rxvtimg.h scrollbar.h rxvtperl.h hookinc.h rsinc.h optinc.h
241scrollbar-xterm.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h
242scrollbar-xterm.o: estl.h emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h
243scrollbar-xterm.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h
244scrollbar-xterm.o: rxvtimg.h scrollbar.h rxvtperl.h hookinc.h rsinc.h
245scrollbar-xterm.o: optinc.h
246scrollbar.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
260scrollbar-next.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h 247scrollbar.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
261scrollbar-next.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h 248scrollbar.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h scrollbar.h
262scrollbar-next.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
263scrollbar-next.o: hookinc.h rsinc.h optinc.h
264scrollbar-plain.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
265scrollbar-plain.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
266scrollbar-plain.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
267scrollbar-plain.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
268scrollbar-plain.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
269scrollbar-plain.o: hookinc.h rsinc.h optinc.h
270scrollbar-rxvt.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
271scrollbar-rxvt.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
272scrollbar-rxvt.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
273scrollbar-rxvt.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
274scrollbar-rxvt.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
275scrollbar-rxvt.o: hookinc.h rsinc.h optinc.h
276scrollbar-xterm.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
277scrollbar-xterm.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
278scrollbar-xterm.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
279scrollbar-xterm.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
280scrollbar-xterm.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
281scrollbar-xterm.o: hookinc.h rsinc.h optinc.h
282scrollbar.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
283scrollbar.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
284scrollbar.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
285scrollbar.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
286scrollbar.o: rxvtperl.h hookinc.h rsinc.h optinc.h 249scrollbar.o: rxvtperl.h hookinc.h rsinc.h optinc.h
287xdefaults.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h 250xdefaults.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
288xdefaults.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h 251xdefaults.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
289xdefaults.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 252xdefaults.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h scrollbar.h
290xdefaults.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
291xdefaults.o: rxvtperl.h hookinc.h rsinc.h optinc.h version.h keyboard.h 253xdefaults.o: rxvtperl.h hookinc.h rsinc.h optinc.h version.h keyboard.h
292rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 254rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
293rxvtperl.o: rxvt.h feature.h ../libptytty/src/ecb.h encoding.h rxvtutil.h 255rxvtperl.o: rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h emman.h
294rxvtperl.o: ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h 256rxvtperl.o: rxvtfont.h rxvttoolkit.h callback.h rxvtimg.h scrollbar.h
295rxvtperl.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
296rxvtperl.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h perlxsi.c 257rxvtperl.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h perlxsi.c
297rxvtperl.o: iom_perl.h 258rxvtperl.o: iom_perl.h

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines