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.156 by sf-exg, Mon Dec 26 15:44:01 2011 UTC vs.
Revision 1.188 by root, Thu May 13 19:21:55 2021 UTC

1DATE=@DATE@ 1DATE = @DATE@
2VERSION=@VERSION@ 2VERSION = @VERSION@
3RXVTNAME=@RXVTNAME@ 3RXVTNAME = @RXVTNAME@
4SHELL = /bin/sh 4SHELL = /bin/sh
5prefix = @prefix@ 5prefix = @prefix@
6exec_prefix = @exec_prefix@ 6exec_prefix = @exec_prefix@
7bindir = @bindir@ 7bindir = @bindir@
8libdir = @libdir@ 8libdir = @libdir@
9man1dir = @mandir@/man1
10man1ext = 1
11man3dir = @mandir@/man3
12man3ext = 3
13PODOPTS = quotes => q<"> , center => q<RXVT-UNICODE>, release => q<$(VERSION)>
9CXX = @CXX@ 14CXX = @CXX@
10PERL = @PERL@ 15PERL = @PERL@
11INSTALL = @INSTALL@ 16INSTALL = @INSTALL@
12INSTALL_PROGRAM = @INSTALL@ -m 755 17INSTALL_PROGRAM = @INSTALL@ -m 755
13INSTALL_DATA = @INSTALL@ -m 644 18INSTALL_DATA = @INSTALL@ -m 644
14CXXFLAGS = @CXXFLAGS@ 19CXXFLAGS = @CXXFLAGS@
15CPPFLAGS = @CPPFLAGS@ 20CPPFLAGS = @CPPFLAGS@
16LDFLAGS = @LDFLAGS@ 21LDFLAGS = @LDFLAGS@
17DEFS = @DEFS@ 22DEFS = @DEFS@
18LIBS = @LIBS@ 23LIBS = @LIBS@
19XINC = @X_CFLAGS@ @AFTERIMAGE_CFLAGS@ @PIXBUF_CFLAGS@ @STARTUP_NOTIFICATION_CFLAGS@ 24XINC = @X_CFLAGS@ @PIXBUF_CFLAGS@ @STARTUP_NOTIFICATION_CFLAGS@
20XLIB = @X_LIBS@ @AFTERIMAGE_LIBS@ -lX11 @X_EXTRA_LIBS@ @PIXBUF_LIBS@ @STARTUP_NOTIFICATION_LIBS@ 25XLIB = @X_LIBS@ -lX11 @X_EXTRA_LIBS@ @PIXBUF_LIBS@ @STARTUP_NOTIFICATION_LIBS@
21COMPILE = $(CXX) -I.. -I$(srcdir) -I. -I$(srcdir)/../libev -I$(srcdir)/../libptytty/src -I$(srcdir)/../libecb $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(XINC) 26COMPILE = $(CXX) -I.. -I$(srcdir) -I. -I$(srcdir)/../libev -I$(srcdir)/../libptytty/src $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(XINC)
22LINK = @LINKER@ $(LDFLAGS) 27LINK = @LINKER@ $(LDFLAGS)
23EXEEXT = @EXEEXT@ 28EXEEXT = @EXEEXT@
24PERLFLAGS = @PERLFLAGS@ 29PERLFLAGS = @PERLFLAGS@
25PERLLIB = @PERLLIB@ 30PERLLIB = @PERLLIB@
26 31
27srcdir = @srcdir@ 32srcdir = @srcdir@
28VPATH = @srcdir@ 33VPATH = @srcdir@
29 34
30first_rule: all 35first_rule: all
31dummy: 36dummy:
32 37
33COMMON = \ 38COMMON = \
34 background.o command.o rxvtfont.o init.o main.o misc.o \ 39 command.o rxvtfont.o init.o main.o misc.o \
35 screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \ 40 screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \
36 scrollbar-xterm.o scrollbar-plain.o xdefaults.o encoding.o \ 41 scrollbar-xterm.o scrollbar-plain.o xdefaults.o encoding.o \
37 rxvttoolkit.o rxvtutil.o keyboard.o \ 42 rxvttoolkit.o rxvtutil.o keyboard.o rxvtimg.o \
38 ev_cpp.o fdpass_wrapper.o ptytty_wrapper.o @PERL_O@ 43 ev_cpp.o fdpass_wrapper.o ptytty_wrapper.o @PERL_O@
39 44
40COMMON_DAEMON = rxvtdaemon.o 45COMMON_DAEMON = rxvtdaemon.o
41 46
42RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)$(EXEEXT) 47RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)$(EXEEXT)
43RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)c$(EXEEXT) 48RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)c$(EXEEXT)
44RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)d$(EXEEXT) 49RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)d$(EXEEXT)
50RCLOCK_BINNAME=$(DESTDIR)$(bindir)/urclock$(EXEEXT)
45 51
46# 52#
47# Distribution variables 53# Distribution variables
48# 54#
49 55
65 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) $(PERLLIB) 71 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) $(PERLLIB)
66 72
67rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o 73rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o
68 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o $(LIBS) 74 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o $(LIBS)
69 75
76rclock: rclock.o
77 $(LINK) -o $@ rclock.o $(LIBS) $(XLIB)
78
70#------------------------------------------------------------------------- 79#-------------------------------------------------------------------------
71 80
72#EXUBERANT_OPTS = -I NOTHROW -I THROW 81#EXUBERANT_OPTS = -I NOTHROW -I THROW
73 82
74tags: *.[Ch] 83tags: *.[Ch]
75 ctags $(EXUBERANT_OPTS) *.[Ch] 84 ctags $(EXUBERANT_OPTS) *.[Ch]
76 85
77TAGS: *.[Ch] 86TAGS: *.[Ch]
78 etags $(EXUBERANT_OPTS) *.[Ch] 87 etags $(EXUBERANT_OPTS) *.[Ch]
79 88
80allbin: rxvt rxvtd rxvtc 89allbin: rxvt rxvtd rxvtc rclock
81 90
82alldoc: 91alldoc:
83 92
84clean: 93clean:
85 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C 94 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C manlst mantmp
86 rm -f *.o 95 rm -f *.o
87 96
88distclean: clean 97distclean: clean
89 rm -f Makefile 98 rm -f Makefile
90 99
95 104
96install-perl: 105install-perl:
97@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir) 106@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)
98@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt 107@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
99@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl 108@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl
109@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man1dir)
110@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man3dir)
100@IF_PERL@ $(INSTALL_DATA) $(srcdir)/urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm 111@IF_PERL@ $(INSTALL_DATA) $(srcdir)/urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
101@IF_PERL@ for ext in $(srcdir)/perl/*; do test -f "$$ext" && $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/; done 112@IF_PERL@ for ext in $(srcdir)/perl/*; do \
113@IF_PERL@ test -f "$$ext" || continue; \
114@IF_PERL@ base=`basename "$$ext"`; \
115@IF_PERL@ $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/; \
116@IF_PERL@ < "$$ext" \
117@IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "'urxvt-$$base'", $(PODOPTS))->parse_from_file' \
118@IF_PERL@ > mantmp; \
119@IF_PERL@ test -s mantmp && $(INSTALL_DATA) mantmp $(DESTDIR)$(man1dir)/$(RXVTNAME)-$$base.$(man1ext); \
120@IF_PERL@ < "$$ext" $(PERL) -ne '<>, (print <> . "\n"), exit if /^=head1/' >&3; \
121@IF_PERL@ done 3>manlst
122@IF_PERL@ cat $(srcdir)/../doc/extensions.pod.top manlst $(srcdir)/../doc/extensions.pod.bot | \
123@IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "$(RXVTNAME)-extensions", $(PODOPTS))->parse_from_file' \
124@IF_PERL@ > mantmp
125@IF_PERL@ $(INSTALL_DATA) mantmp $(DESTDIR)$(man1dir)/$(RXVTNAME)-extensions.$(man1ext)
126@IF_PERL@ < $(srcdir)/urxvt.pm \
127@IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "$(RXVTNAME)perl", section => 3, $(PODOPTS))->parse_from_file' \
128@IF_PERL@ > mantmp
129@IF_PERL@ $(INSTALL_DATA) mantmp $(DESTDIR)$(man3dir)/$(RXVTNAME)perl.$(man3ext)
102 130
103install-bin: allbin 131install-bin: allbin
104 $(INSTALL) -d $(DESTDIR)$(bindir) 132 $(INSTALL) -d $(DESTDIR)$(bindir)
105 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME) 133 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
106 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME) 134 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
107 $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME) 135 $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
136 $(INSTALL_PROGRAM) rclock $(RCLOCK_BINNAME)
108 137
109install: install-bin install-perl 138install: install-bin install-perl
110 139
111perlxsi.c: Makefile 140perlxsi.c: Makefile
112 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt 141 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
113 142
114rxvtperl.C: rxvtperl.xs iom_perl.h iom_perl.xs typemap typemap.iom 143rxvtperl.C: rxvtperl.xs iom_perl.h iom_perl.xs typemap typemap.iom
115 PERL="$(PERL)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap.iom -typemap typemap -prototypes $(srcdir)/rxvtperl.xs >$@ 144 PERL="$(PERL)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap 'typemap.iom' -typemap 'typemap' -prototypes $(srcdir)/rxvtperl.xs >$@
116 145
117rxvtperl.o: rxvtperl.C perlxsi.c 146rxvtperl.o: rxvtperl.C perlxsi.c
118 $(COMPILE) $(PERLFLAGS) -DLIBDIR="\"$(libdir)/urxvt\"" -c $< 147 $(COMPILE) $(PERLFLAGS) -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
119 148
120depend: 149depend:
121 makedepend -f Makefile.in -I. -I.. -I../libev -I../libptytty/src -I../libecb -Y *.C >/dev/null 2>&1 150 makedepend -f Makefile.in -I. -I.. -I../libptytty/src -I../libev -Y *.C *.xs >/dev/null 2>&1
151
152# makedepend has trouble finding these
153ev_cpp.o: ../libev/ev.c ../libev/ev_epoll.c ../libev/ev_kqueue.c ../libev/ev_linuxaio.c
154ev_cpp.o: ../libev/ev_poll.c ../libev/ev_port.c ../libev/ev_select.c ../libev/ev_win32.c
155
122 156
123# DO NOT DELETE: nice dependency list follows 157# DO NOT DELETE: nice dependency list follows
124 158
125background.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h 159command.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
126background.o: ../libecb/ecb.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h 160command.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
127background.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h
128background.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
129background.o: optinc.h
130command.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h ../libecb/ecb.h
131command.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h 161command.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
132command.o: ../libev/ev.h callback.h scrollbar.h salloc.h 162command.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
133command.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h 163command.o: rxvtperl.h hookinc.h rsinc.h optinc.h version.h command.h
134command.o: version.h command.h keyboard.h 164command.o: keyboard.h
135encoding.o: ../config.h encoding.h rxvtutil.h ../libecb/ecb.h 165encoding.o: ../config.h encoding.h rxvtutil.h ../libptytty/src/ecb.h
166encoding.o: ../libptytty/src/estl.h emman.h table/iso8859_1.h
167encoding.o: table/iso8859_15.h table/iso8859_2.h table/iso8859_3.h
136encoding.o: table/iso8859_1.h table/iso8859_15.h table/iso8859_2.h 168encoding.o: table/iso8859_4.h table/iso8859_5.h table/iso8859_6.h
137encoding.o: table/iso8859_3.h table/iso8859_4.h table/iso8859_5.h 169encoding.o: table/iso8859_7.h table/iso8859_8.h table/iso8859_9.h
138encoding.o: table/iso8859_6.h table/iso8859_7.h table/iso8859_8.h 170encoding.o: table/iso8859_10.h table/iso8859_11.h table/iso8859_13.h
139encoding.o: table/iso8859_9.h table/iso8859_10.h table/iso8859_11.h 171encoding.o: table/iso8859_14.h table/iso8859_16.h table/koi8_r.h
140encoding.o: table/iso8859_13.h table/iso8859_14.h table/iso8859_16.h
141encoding.o: table/koi8_r.h table/koi8_u.h table/ksc5601_1987_0.h table/big5.h 172encoding.o: table/koi8_u.h table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
142encoding.o: table/gbk_0.h table/gb2312_1980_0.h table/cns11643_1992_1.h 173encoding.o: table/gb2312_1980_0.h table/cns11643_1992_1.h
143encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h 174encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h
144encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h 175encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h
145encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h 176encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
146encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h 177encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
147encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h 178encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
149encoding.o: table/compose.h table/category.h 180encoding.o: table/compose.h table/category.h
150ev_cpp.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h ../libev/ev.c 181ev_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 182ev_cpp.o: ../libev/ev_vars.h ../libev/ev_epoll.c ../libev/ev_select.c
152fdpass_wrapper.o: ../libptytty/src/fdpass.C ../config.h 183fdpass_wrapper.o: ../libptytty/src/fdpass.C ../config.h
153fdpass_wrapper.o: ../libptytty/src/libptytty.h 184fdpass_wrapper.o: ../libptytty/src/libptytty.h
154init.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h ../libecb/ecb.h 185init.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
186init.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
187init.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
188init.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
189init.o: hookinc.h rsinc.h optinc.h init.h keyboard.h
190keyboard.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
191keyboard.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
192keyboard.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
193keyboard.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
194keyboard.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h
195main.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
196main.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
197main.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
198main.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
199main.o: hookinc.h rsinc.h optinc.h init.h keyboard.h
200misc.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
201misc.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
202misc.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
203misc.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
204misc.o: hookinc.h rsinc.h optinc.h
205ptytty_wrapper.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
206ptytty_wrapper.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
155init.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h 207ptytty_wrapper.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h
156init.o: ../libev/ev.h callback.h scrollbar.h salloc.h
157init.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
158init.o: init.h keyboard.h
159keyboard.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
160keyboard.o: ../libecb/ecb.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
161keyboard.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h
162keyboard.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
163keyboard.o: optinc.h keyboard.h
164main.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h ../libecb/ecb.h
165main.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
166main.o: ../libev/ev.h callback.h scrollbar.h salloc.h
167main.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
168main.o: init.h keyboard.h
169misc.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h ../libecb/ecb.h
170misc.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
171misc.o: ../libev/ev.h callback.h scrollbar.h salloc.h
172misc.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
173ptytty_wrapper.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
174ptytty_wrapper.o: ../libecb/ecb.h rxvtfont.h rxvttoolkit.h ev_cpp.h
175ptytty_wrapper.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h 208ptytty_wrapper.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
176ptytty_wrapper.o: salloc.h ../libptytty/src/libptytty.h rxvtperl.h hookinc.h 209ptytty_wrapper.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
177ptytty_wrapper.o: rsinc.h optinc.h ../libptytty/src/logging.C 210ptytty_wrapper.o: optinc.h ../libptytty/src/logging.C
178ptytty_wrapper.o: ../libptytty/src/ptytty.h ../libptytty/src/ptytty_conf.h 211ptytty_wrapper.o: ../libptytty/src/ptytty.h ../libptytty/src/ptytty_conf.h
179ptytty_wrapper.o: ../libptytty/src/proxy.C ../libptytty/src/ptytty.C 212ptytty_wrapper.o: ../libptytty/src/proxy.C ../libptytty/src/ptytty.C
180rxvt.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h ../libecb/ecb.h 213rxvt.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
181rxvt.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h 214rxvt.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
182rxvt.o: ../libev/ev.h callback.h scrollbar.h salloc.h 215rxvt.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
183rxvt.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h 216rxvt.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
217rxvt.o: hookinc.h rsinc.h optinc.h
184rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h ../libecb/ecb.h 218rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h ../libptytty/src/ecb.h
185rxvtc.o: ../libptytty/src/libptytty.h 219rxvtc.o: ../libptytty/src/estl.h emman.h ../libptytty/src/libptytty.h
186rxvtd.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h ../libecb/ecb.h 220rxvtd.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
187rxvtd.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h 221rxvtd.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
188rxvtd.o: ../libev/ev.h callback.h scrollbar.h salloc.h 222rxvtd.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
189rxvtd.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h 223rxvtd.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
190rxvtd.o: rxvtdaemon.h 224rxvtd.o: hookinc.h rsinc.h optinc.h rxvtdaemon.h
191rxvtdaemon.o: rxvtdaemon.h rxvtutil.h ../libecb/ecb.h 225rxvtdaemon.o: rxvtdaemon.h rxvtutil.h ../libptytty/src/ecb.h
226rxvtdaemon.o: ../libptytty/src/estl.h emman.h
192rxvtfont.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h 227rxvtfont.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
193rxvtfont.o: ../libecb/ecb.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h 228rxvtfont.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
194rxvtfont.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h 229rxvtfont.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
195rxvtfont.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h 230rxvtfont.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
196rxvtfont.o: optinc.h table/linedraw.h 231rxvtfont.o: rxvtperl.h hookinc.h rsinc.h optinc.h table/linedraw.h
232rxvtimg.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
233rxvtimg.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
234rxvtimg.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
235rxvtimg.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
236rxvtimg.o: rxvtperl.h hookinc.h rsinc.h optinc.h
197rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 237rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
198rxvtperl.o: rxvt.h feature.h encoding.h rxvtutil.h ../libecb/ecb.h rxvtfont.h 238rxvtperl.o: rxvt.h feature.h ../libptytty/src/ecb.h encoding.h rxvtutil.h
199rxvtperl.o: rxvttoolkit.h callback.h scrollbar.h salloc.h 239rxvtperl.o: ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
200rxvtperl.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h 240rxvtperl.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
201rxvtperl.o: optinc.h keyboard.h perlxsi.c iom_perl.h 241rxvtperl.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h perlxsi.c
242rxvtperl.o: iom_perl.h
202rxvttoolkit.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h 243rxvttoolkit.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
203rxvttoolkit.o: ../libecb/ecb.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h 244rxvttoolkit.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
204rxvttoolkit.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h 245rxvttoolkit.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
246rxvttoolkit.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
205rxvttoolkit.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h 247rxvttoolkit.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
206rxvttoolkit.o: optinc.h 248rxvttoolkit.o: optinc.h
207rxvtutil.o: rxvtutil.h ../libecb/ecb.h 249rxvtutil.o: emman.c emman.h ../libptytty/src/ecb.h rxvtutil.h
208salloc.o: salloc.h 250rxvtutil.o: ../libptytty/src/estl.h
209screen.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h ../libecb/ecb.h 251screen.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
210screen.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h 252screen.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
211screen.o: ../libev/ev.h callback.h scrollbar.h salloc.h
212screen.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h optinc.h
213screen.o: salloc.C
214scrollbar-next.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
215scrollbar-next.o: ../libecb/ecb.h rxvtfont.h rxvttoolkit.h ev_cpp.h
216scrollbar-next.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h 253screen.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
254screen.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
255screen.o: hookinc.h rsinc.h optinc.h
256scrollbar-next.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
257scrollbar-next.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
258scrollbar-next.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
259scrollbar-next.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
217scrollbar-next.o: scrollbar.h salloc.h ../libptytty/src/libptytty.h 260scrollbar-next.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
261scrollbar-next.o: hookinc.h rsinc.h optinc.h
262scrollbar-plain.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
263scrollbar-plain.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
264scrollbar-plain.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
265scrollbar-plain.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
266scrollbar-plain.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
267scrollbar-plain.o: hookinc.h rsinc.h optinc.h
268scrollbar-rxvt.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
269scrollbar-rxvt.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
270scrollbar-rxvt.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
271scrollbar-rxvt.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
272scrollbar-rxvt.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
273scrollbar-rxvt.o: hookinc.h rsinc.h optinc.h
274scrollbar-xterm.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
275scrollbar-xterm.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
276scrollbar-xterm.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
277scrollbar-xterm.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
278scrollbar-xterm.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
279scrollbar-xterm.o: hookinc.h rsinc.h optinc.h
280scrollbar.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
281scrollbar.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
282scrollbar.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
283scrollbar.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
218scrollbar-next.o: rxvtperl.h hookinc.h rsinc.h optinc.h 284scrollbar.o: rxvtperl.h hookinc.h rsinc.h optinc.h
219scrollbar-plain.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
220scrollbar-plain.o: ../libecb/ecb.h rxvtfont.h rxvttoolkit.h ev_cpp.h
221scrollbar-plain.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h
222scrollbar-plain.o: scrollbar.h salloc.h ../libptytty/src/libptytty.h
223scrollbar-plain.o: rxvtperl.h hookinc.h rsinc.h optinc.h
224scrollbar-rxvt.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
225scrollbar-rxvt.o: ../libecb/ecb.h rxvtfont.h rxvttoolkit.h ev_cpp.h
226scrollbar-rxvt.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h
227scrollbar-rxvt.o: scrollbar.h salloc.h ../libptytty/src/libptytty.h
228scrollbar-rxvt.o: rxvtperl.h hookinc.h rsinc.h optinc.h
229scrollbar-xterm.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
230scrollbar-xterm.o: ../libecb/ecb.h rxvtfont.h rxvttoolkit.h ev_cpp.h
231scrollbar-xterm.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h
232scrollbar-xterm.o: scrollbar.h salloc.h ../libptytty/src/libptytty.h
233scrollbar-xterm.o: rxvtperl.h hookinc.h rsinc.h optinc.h
234scrollbar.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
235scrollbar.o: ../libecb/ecb.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
236scrollbar.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h
237scrollbar.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
238scrollbar.o: optinc.h
239xdefaults.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h 285xdefaults.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
240xdefaults.o: ../libecb/ecb.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h 286xdefaults.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
241xdefaults.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h 287xdefaults.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
242xdefaults.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h 288xdefaults.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
243xdefaults.o: optinc.h version.h keyboard.h 289xdefaults.o: rxvtperl.h hookinc.h rsinc.h optinc.h version.h keyboard.h
290rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
291rxvtperl.o: rxvt.h feature.h ../libptytty/src/ecb.h encoding.h rxvtutil.h
292rxvtperl.o: ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
293rxvtperl.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
294rxvtperl.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h perlxsi.c
295rxvtperl.o: iom_perl.h

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines