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.173 by sf-exg, Sat Sep 22 14:31:11 2012 UTC vs.
Revision 1.191 by root, Sat Jul 3 04:04:12 2021 UTC

34 34
35first_rule: all 35first_rule: all
36dummy: 36dummy:
37 37
38COMMON = \ 38COMMON = \
39 background.o 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 fdpass_wrapper.o ptytty_wrapper.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)/urclock$(EXEEXT)
50 51
51# 52#
52# Distribution variables 53# Distribution variables
53# 54#
54 55
70 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) $(PERLLIB) 71 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) $(PERLLIB)
71 72
72rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o 73rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o
73 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o $(LIBS) 74 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o $(LIBS)
74 75
76rclock: rclock.o
77 $(LINK) -o $@ rclock.o $(LIBS) $(XLIB)
78
75#------------------------------------------------------------------------- 79#-------------------------------------------------------------------------
76 80
77#EXUBERANT_OPTS = -I NOTHROW -I THROW
78
79tags: *.[Ch] 81tags: *.[Ch]
80 ctags $(EXUBERANT_OPTS) *.[Ch] 82 ctags *.[Ch]
81 83
82TAGS: *.[Ch] 84TAGS: *.[Ch]
83 etags $(EXUBERANT_OPTS) *.[Ch] 85 etags *.[Ch]
84 86
85allbin: rxvt rxvtd rxvtc 87allbin: rxvt rxvtd rxvtc rclock
86 88
87alldoc: 89alldoc:
88 90
89clean: 91clean:
90 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C manlst mantmp 92 rm -f rxvt rxvtc rxvtd rclock perlxsi.c rxvtperl.C manlst mantmp
91 rm -f *.o 93 rm -f *.o
92 94
93distclean: clean 95distclean: clean
94 rm -f Makefile 96 rm -f Makefile
95 97
103@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt 105@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
104@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl 106@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl
105@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man1dir) 107@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man1dir)
106@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man3dir) 108@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man3dir)
107@IF_PERL@ $(INSTALL_DATA) $(srcdir)/urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm 109@IF_PERL@ $(INSTALL_DATA) $(srcdir)/urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
108@IF_PERL@ cd $(srcdir)/perl; \
109@IF_PERL@ for ext in *; do \ 110@IF_PERL@ for ext in $(srcdir)/perl/*; do \
110@IF_PERL@ test -f "$$ext" || continue; \ 111@IF_PERL@ test -f "$$ext" || continue; \
112@IF_PERL@ base=`basename "$$ext"`; \
111@IF_PERL@ $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/; \ 113@IF_PERL@ $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/; \
112@IF_PERL@ < "$$ext" \ 114@IF_PERL@ < "$$ext" \
113@IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "'rxvt-$$ext'", $(PODOPTS))->parse_from_file' \ 115@IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "'urxvt-$$base'", $(PODOPTS))->parse_from_file' \
114@IF_PERL@ > ../mantmp; \ 116@IF_PERL@ > mantmp; \
115@IF_PERL@ test -s ../mantmp && $(INSTALL_DATA) ../mantmp $(DESTDIR)$(man1dir)/$(RXVTNAME)-$$ext.$(man1ext); \ 117@IF_PERL@ test -s mantmp && $(INSTALL_DATA) mantmp $(DESTDIR)$(man1dir)/$(RXVTNAME)-$$base.$(man1ext); \
116@IF_PERL@ < "$$ext" $(PERL) -ne '<>, (print <> . "\n"), exit if /^=head1/' >&3; \ 118@IF_PERL@ < "$$ext" $(PERL) -ne '<>, (print <> . "\n"), exit if /^=head1/' >&3; \
117@IF_PERL@ done 3>../manlst 119@IF_PERL@ done 3>manlst
118@IF_PERL@ cat $(srcdir)/../doc/extensions.pod.top manlst $(srcdir)/../doc/extensions.pod.bot | \ 120@IF_PERL@ cat $(srcdir)/../doc/extensions.pod.top manlst $(srcdir)/../doc/extensions.pod.bot | \
119@IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "$(RXVTNAME)-extensions", $(PODOPTS))->parse_from_file' \ 121@IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "$(RXVTNAME)-extensions", $(PODOPTS))->parse_from_file' \
120@IF_PERL@ > mantmp 122@IF_PERL@ > mantmp
121@IF_PERL@ $(INSTALL_DATA) mantmp $(DESTDIR)$(man1dir)/$(RXVTNAME)-extensions.$(man1ext) 123@IF_PERL@ $(INSTALL_DATA) mantmp $(DESTDIR)$(man1dir)/$(RXVTNAME)-extensions.$(man1ext)
122@IF_PERL@ < $(srcdir)/urxvt.pm \ 124@IF_PERL@ < $(srcdir)/urxvt.pm \
123@IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "$(RXVTNAME)perl", $(PODOPTS))->parse_from_file' \ 125@IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "$(RXVTNAME)perl", section => 3, $(PODOPTS))->parse_from_file' \
124@IF_PERL@ > mantmp 126@IF_PERL@ > mantmp
125@IF_PERL@ $(INSTALL_DATA) mantmp $(DESTDIR)$(man3dir)/$(RXVTNAME)perl.$(man3ext) 127@IF_PERL@ $(INSTALL_DATA) mantmp $(DESTDIR)$(man3dir)/$(RXVTNAME)perl.$(man3ext)
126 128
127install-bin: allbin 129install-bin: allbin
128 $(INSTALL) -d $(DESTDIR)$(bindir) 130 $(INSTALL) -d $(DESTDIR)$(bindir)
129 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME) 131 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
130 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME) 132 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
131 $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME) 133 $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
134 $(INSTALL_PROGRAM) rclock $(RCLOCK_BINNAME)
132 135
133install: install-bin install-perl 136install: install-bin install-perl
134 137
135perlxsi.c: Makefile 138perlxsi.c: Makefile
136 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt 139 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
137 140
138rxvtperl.C: rxvtperl.xs iom_perl.h iom_perl.xs typemap typemap.iom 141rxvtperl.C: rxvtperl.xs iom_perl.h iom_perl.xs typemap typemap.iom
139 PERL="$(PERL)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap.iom -typemap typemap -prototypes $(srcdir)/rxvtperl.xs >$@ 142 PERL="$(PERL)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap 'typemap.iom' -typemap 'typemap' -prototypes $(srcdir)/rxvtperl.xs >$@
140 143
141rxvtperl.o: rxvtperl.C perlxsi.c 144rxvtperl.o: rxvtperl.C perlxsi.c
142 $(COMPILE) $(PERLFLAGS) -DLIBDIR="\"$(libdir)/urxvt\"" -c $< 145 $(COMPILE) $(PERLFLAGS) -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
143 146
144depend: 147depend:
145 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../libptytty/src -I../libev -Y *.C *.xs >/dev/null 2>&1
146 149
150# makedepend has trouble finding these
151ev_cpp.o: ../libev/ev.c ../libev/ev_epoll.c ../libev/ev_kqueue.c ../libev/ev_linuxaio.c
152ev_cpp.o: ../libev/ev_poll.c ../libev/ev_port.c ../libev/ev_select.c ../libev/ev_win32.c
153
154
147# DO NOT DELETE: nice dependency list follows 155# DO NOT DELETE: nice dependency list follows
148 156
149background.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
150background.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h 158command.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
151background.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
152background.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h 159command.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h scrollbar.h
153background.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h 160command.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
154background.o: optinc.h 161command.o: version.h command.h keyboard.h
155command.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
156command.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
157command.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
158command.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
159command.o: rxvtperl.h hookinc.h rsinc.h optinc.h version.h command.h
160command.o: keyboard.h
161encoding.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
162encoding.o: ../libptytty/src/estl.h emman.h table/iso8859_1.h
163encoding.o: table/iso8859_15.h table/iso8859_2.h table/iso8859_3.h
164encoding.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
165encoding.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
166encoding.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
167encoding.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
168encoding.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
169encoding.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
170encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h 170encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h
171encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h 171encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h
172encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h 172encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
173encoding.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
174encoding.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
176encoding.o: table/compose.h table/category.h 176encoding.o: table/compose.h table/category.h
177ev_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
178ev_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
179fdpass_wrapper.o: ../libptytty/src/fdpass.C ../config.h 179fdpass_wrapper.o: ../libptytty/src/fdpass.C ../config.h
180fdpass_wrapper.o: ../libptytty/src/libptytty.h 180fdpass_wrapper.o: ../libptytty/src/libptytty.h
181init.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h 181init.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
182init.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
183init.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
184init.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
185init.o: hookinc.h rsinc.h optinc.h init.h keyboard.h
186keyboard.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
187keyboard.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
188keyboard.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
189keyboard.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
190keyboard.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h
191main.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
192main.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
193main.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
194main.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
195main.o: hookinc.h rsinc.h optinc.h init.h keyboard.h
196misc.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
197misc.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
198misc.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
199misc.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
200misc.o: hookinc.h rsinc.h optinc.h
201ptytty_wrapper.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
202ptytty_wrapper.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
203ptytty_wrapper.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h 182init.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
204ptytty_wrapper.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h 183init.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
184init.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
185init.o: init.h keyboard.h
186keyboard.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
187keyboard.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
188keyboard.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h scrollbar.h
205ptytty_wrapper.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h 189keyboard.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
190keyboard.o: optinc.h keyboard.h
191main.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
192main.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
193main.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
194main.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
195main.o: init.h keyboard.h
196misc.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
197misc.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
198misc.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
199misc.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
200ptytty_wrapper.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h
201ptytty_wrapper.o: estl.h emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h
202ptytty_wrapper.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
203ptytty_wrapper.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
206ptytty_wrapper.o: optinc.h ../libptytty/src/logging.C 204ptytty_wrapper.o: hookinc.h rsinc.h optinc.h ../libptytty/src/logging.C
207ptytty_wrapper.o: ../libptytty/src/ptytty.h ../libptytty/src/ptytty_conf.h 205ptytty_wrapper.o: ../libptytty/src/ptytty.h ../libptytty/src/ptytty_conf.h
208ptytty_wrapper.o: ../libptytty/src/proxy.C ../libptytty/src/ptytty.C 206ptytty_wrapper.o: ../libptytty/src/proxy.C ../libptytty/src/ptytty.C
209rxvt.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h 207rxvt.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
210rxvt.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
211rxvt.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
212rxvt.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
213rxvt.o: hookinc.h rsinc.h optinc.h
214rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h ../libptytty/src/ecb.h
215rxvtc.o: ../libptytty/src/estl.h emman.h ../libptytty/src/libptytty.h
216rxvtd.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
217rxvtd.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
218rxvtd.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
219rxvtd.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
220rxvtd.o: hookinc.h rsinc.h optinc.h rxvtdaemon.h
221rxvtdaemon.o: rxvtdaemon.h rxvtutil.h ../libptytty/src/ecb.h
222rxvtdaemon.o: ../libptytty/src/estl.h emman.h
223rxvtfont.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
224rxvtfont.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
225rxvtfont.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 208rxvt.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
226rxvtfont.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h 209rxvt.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
227rxvtfont.o: rxvtperl.h hookinc.h rsinc.h optinc.h table/linedraw.h 210rxvt.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
211rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h ecb.h estl.h emman.h
212rxvtc.o: ../libptytty/src/libptytty.h
213rxvtd.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
214rxvtd.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
215rxvtd.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h scrollbar.h
216rxvtd.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
217rxvtd.o: rxvtdaemon.h
218rxvtdaemon.o: rxvtdaemon.h rxvtutil.h ecb.h estl.h emman.h
219rxvtfont.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
220rxvtfont.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
221rxvtfont.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h scrollbar.h
222rxvtfont.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
223rxvtfont.o: optinc.h table/linedraw.h
228rxvtimg.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h 224rxvtimg.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
229rxvtimg.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h 225rxvtimg.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
230rxvtimg.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 226rxvtimg.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h scrollbar.h
231rxvtimg.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
232rxvtimg.o: rxvtperl.h hookinc.h rsinc.h optinc.h 227rxvtimg.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
233rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 228rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
234rxvtperl.o: rxvt.h feature.h ../libptytty/src/ecb.h encoding.h rxvtutil.h 229rxvtperl.o: rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h emman.h
235rxvtperl.o: ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h 230rxvtperl.o: rxvtfont.h rxvttoolkit.h callback.h rxvtimg.h scrollbar.h
236rxvtperl.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h 231rxvtperl.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
237rxvtperl.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h perlxsi.c 232rxvtperl.o: optinc.h keyboard.h perlxsi.c iom_perl.h
238rxvtperl.o: iom_perl.h
239rxvttoolkit.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h 233rxvttoolkit.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h
240rxvttoolkit.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h 234rxvttoolkit.o: estl.h emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
241rxvttoolkit.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
242rxvttoolkit.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h 235rxvttoolkit.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h scrollbar.h
243rxvttoolkit.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h 236rxvttoolkit.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
244rxvttoolkit.o: optinc.h 237rxvttoolkit.o: optinc.h
245rxvtutil.o: rxvtutil.h ../libptytty/src/ecb.h ../libptytty/src/estl.h emman.h 238rxvtutil.o: emman.c emman.h ecb.h rxvtutil.h estl.h
246rxvtutil.o: emman.c
247screen.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h 239screen.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
248screen.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h 240screen.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
241screen.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h scrollbar.h
242screen.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
243scrollbar-next.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h
244scrollbar-next.o: estl.h emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h
249screen.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h 245scrollbar-next.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h
250screen.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
251screen.o: hookinc.h rsinc.h optinc.h
252scrollbar-next.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
253scrollbar-next.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
254scrollbar-next.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
255scrollbar-next.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
256scrollbar-next.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
257scrollbar-next.o: hookinc.h rsinc.h optinc.h
258scrollbar-plain.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
259scrollbar-plain.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
260scrollbar-plain.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
261scrollbar-plain.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
262scrollbar-plain.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
263scrollbar-plain.o: hookinc.h rsinc.h optinc.h
264scrollbar-rxvt.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
265scrollbar-rxvt.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
266scrollbar-rxvt.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
267scrollbar-rxvt.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
268scrollbar-rxvt.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
269scrollbar-rxvt.o: hookinc.h rsinc.h optinc.h
270scrollbar-xterm.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
271scrollbar-xterm.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
272scrollbar-xterm.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
273scrollbar-xterm.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
274scrollbar-xterm.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
275scrollbar-xterm.o: hookinc.h rsinc.h optinc.h
276scrollbar.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
277scrollbar.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
278scrollbar.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
279scrollbar.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h 246scrollbar-next.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
280scrollbar.o: rxvtperl.h hookinc.h rsinc.h optinc.h 247scrollbar-next.o: rxvtperl.h hookinc.h rsinc.h optinc.h
281xdefaults.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h 248scrollbar-plain.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h
282xdefaults.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h 249scrollbar-plain.o: estl.h emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h
283xdefaults.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 250scrollbar-plain.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h
251scrollbar-plain.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
252scrollbar-plain.o: rxvtperl.h hookinc.h rsinc.h optinc.h
253scrollbar-rxvt.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h
254scrollbar-rxvt.o: estl.h emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h
255scrollbar-rxvt.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h
284xdefaults.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h 256scrollbar-rxvt.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
285xdefaults.o: rxvtperl.h hookinc.h rsinc.h optinc.h version.h keyboard.h 257scrollbar-rxvt.o: rxvtperl.h hookinc.h rsinc.h optinc.h
258scrollbar-xterm.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h
259scrollbar-xterm.o: estl.h emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h
260scrollbar-xterm.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h
261scrollbar-xterm.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
262scrollbar-xterm.o: rxvtperl.h hookinc.h rsinc.h optinc.h
263scrollbar.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
264scrollbar.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
265scrollbar.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h scrollbar.h
266scrollbar.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
267scrollbar.o: optinc.h
268xdefaults.o: ../config.h rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h
269xdefaults.o: emman.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
270xdefaults.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h scrollbar.h
271xdefaults.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
272xdefaults.o: optinc.h version.h keyboard.h
286rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 273rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
287rxvtperl.o: rxvt.h feature.h ../libptytty/src/ecb.h encoding.h rxvtutil.h 274rxvtperl.o: rxvt.h feature.h ecb.h encoding.h rxvtutil.h estl.h emman.h
288rxvtperl.o: ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h 275rxvtperl.o: rxvtfont.h rxvttoolkit.h callback.h rxvtimg.h scrollbar.h
289rxvtperl.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h 276rxvtperl.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
290rxvtperl.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h perlxsi.c 277rxvtperl.o: optinc.h keyboard.h perlxsi.c iom_perl.h
291rxvtperl.o: iom_perl.h

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines