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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines