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.65 by root, Tue Jan 31 00:53:49 2006 UTC vs.
Revision 1.139 by root, Wed Nov 3 21:04:15 2010 UTC

8libdir = @libdir@ 8libdir = @libdir@
9includedir = @includedir@ 9includedir = @includedir@
10CC = @CC@ 10CC = @CC@
11CXX = @CXX@ 11CXX = @CXX@
12CPP = @CPP@ 12CPP = @CPP@
13MV = @MV@
14CP = @CP@
15LN = @LN@
16SED = @SED@
17ECHO = @ECHO@
18PERL = @PERL@ 13PERL = @PERL@
19INSTALL = @INSTALL@ 14INSTALL = @INSTALL@
20INSTALL_PROGRAM = @INSTALL@ -m 755 15INSTALL_PROGRAM = @INSTALL@ -m 755
21INSTALL_DATA = @INSTALL@ -m 644 16INSTALL_DATA = @INSTALL@ -m 644
22CXXFLAGS = @CXXFLAGS@ 17CXXFLAGS = @CXXFLAGS@
23CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@ 18CPPFLAGS = @CPPFLAGS@
24LDFLAGS = @LDFLAGS@ 19LDFLAGS = @LDFLAGS@
25DEFS = @DEFS@ 20DEFS = @DEFS@
26LIBS = @LIBS@ 21LIBS = @LIBS@
27DINCLUDE = @DINCLUDE@ 22XINC = @X_CFLAGS@ @AFTERIMAGE_CFLAGS@ @PIXBUF_CFLAGS@
28DLIB = @DLIB@
29XINC = @X_CFLAGS@ @XPM_CFLAGS@
30XLIB = @X_LIBS@ @XPM_LIBS@ -lX11 @X_EXTRA_LIBS@ 23XLIB = @X_LIBS@ @AFTERIMAGE_LIBS@ -lX11 @X_EXTRA_LIBS@ @PIXBUF_LIBS@
31COMPILE = $(CXX) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CXXFLAGS) $(DEBUG) $(DINCLUDE) $(XINC) -I$(basedir) -I$(srcdir) -I. 24COMPILE = $(CXX) -I.. -I$(srcdir) -I. -I$(srcdir)/../libev $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(XINC)
32LINK = @LINKER@ $(LDFLAGS) 25LINK = @LINKER@ $(LDFLAGS)
26EXEEXT = @EXEEXT@
27PERLFLAGS = @PERLFLAGS@
28PERLLIB = @PERLLIB@
33 29
34srcdir = @srcdir@ 30srcdir = @srcdir@
35VPATH = @srcdir@ 31VPATH = @srcdir@
36.PATH: @srcdir@
37
38top_builddir = ..
39basedir = ..
40thisdir = src
41
42DEBUG=-DDEBUG_STRICT
43 32
44first_rule: all 33first_rule: all
45dummy: 34dummy:
46 35
47COMMON = \ 36COMMON = \
48 command.o rxvtfont.o init.o logging.o main.o misc.o netdisp.o \ 37 background.o command.o rxvtfont.o init.o logging.o main.o misc.o \
49 ptytty.o proxy.o screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \ 38 ptytty.o proxy.o screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \
50 scrollbar-xterm.o scrollbar-plain.o xdefaults.o xpm.o encoding.o \ 39 scrollbar-xterm.o scrollbar-plain.o xdefaults.o encoding.o \
51 rxvttoolkit.o rxvtutil.o iom.o keyboard.o fdpass.o @PERL_O@ 40 rxvttoolkit.o rxvtutil.o keyboard.o \
41 fdpass.o ev_cpp.o @PERL_O@
52 42
53COMMON_DAEMON = rxvtdaemon.o 43COMMON_DAEMON = rxvtdaemon.o
54 44
55RXVT_BASENAME=`$(ECHO) $(RXVTNAME)|$(SED) 's/$(EXEEXT)$$//'|$(SED) '$(transform)'`
56RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)$(EXEEXT) 45RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)$(EXEEXT)
57RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)c$(EXEEXT) 46RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)c$(EXEEXT)
58RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)d$(EXEEXT) 47RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)d$(EXEEXT)
59 48
60# 49#
61# Distribution variables 50# Distribution variables
62# 51#
63 52
64.SUFFIXES: .C .o 53.SUFFIXES: .C .c .o
65 54
66#------------------------------------------------------------------------- 55#-------------------------------------------------------------------------
67# inference rules 56# inference rules
68.C.o: 57.C.o:
69 $(COMPILE) -c $< 58 $(COMPILE) -c $<
70 59
71#.C.lo:
72# $(LIBTOOL) --mode=compile $(COMPILE) -c $<
73#
74#.s.lo:
75# $(LIBTOOL) --mode=compile $(COMPILE) -c $<
76#
77#.S.lo:
78# $(LIBTOOL) --mode=compile $(COMPILE) -c $<
79
80#------------------------------------------------------------------------- 60#-------------------------------------------------------------------------
81 61
82all: allbin 62all: allbin
83 63
84rxvt: rxvt.o $(COMMON) 64rxvt: rxvt.o $(COMMON)
85 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) $(DLIB) @PERLLIB@ 65 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) $(PERLLIB)
86# $(LIBTOOL) --mode=link $(LINK) rxvt.o librxvt.la $(LIBS) $(XLIB) $(DLIB) -o $@
87 66
88rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON) 67rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON)
89 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) $(DLIB) @PERLLIB@ 68 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) $(PERLLIB)
90# $(LIBTOOL) --mode=link $(LINK) rxvtd.o rxvtdaemon.o librxvt.la $(LIBS) $(XLIB) $(DLIB) -o $@
91 69
92rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass.o 70rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass.o
93 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass.o $(LIBS) $(DLIB) 71 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass.o $(LIBS)
94# $(LIBTOOL) --mode=link $(LINK) rxvtc.o rxvtdaemon.o $(LIBS) $(DLIB) -o $@
95
96#librxvt.la: $(LIBOBJS)
97# $(LIBTOOL) --mode=link $(LINK) -rpath $(libdir) -version-info $(LIBVERSION) $(LIBOBJS) $(LIBS) -o $@
98 72
99#------------------------------------------------------------------------- 73#-------------------------------------------------------------------------
100 74
75#EXUBERANT_OPTS = -I NOTHROW
76
101tags: *.[Ch] 77tags: *.[Ch]
102 ctags *.[Ch] 78 ctags $(EXUBERANT_OPTS) *.[Ch]
103 79
104TAGS: *.[Ch] 80TAGS: *.[Ch]
105 etags *.[Ch] 81 etags $(EXUBERANT_OPTS) *.[Ch]
106 82
107allbin: rxvt rxvtd rxvtc 83allbin: rxvt rxvtd rxvtc
108 84
109alldoc: 85alldoc:
110 86
111clean: 87clean:
112 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C 88 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C
113 rm -f *.o *.lo .libs/* librxvt.la tmpproto *.tmp 89 rm -f *.o
114 90
91distclean: clean
92 rm -f Makefile
93
115realclean: clean 94realclean: distclean
116 rm -f tags TAGS librxvt.h 95 rm -f tags TAGS
117 96
118cleandir: realclean 97cleandir: realclean
119
120distclean: realclean
121 (cd $(srcdir); rm -f Makefile)
122 98
123install-perl: 99install-perl:
124@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir) 100@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)
125@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt 101@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
126@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl 102@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl
127@IF_PERL@ $(INSTALL_DATA) urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm 103@IF_PERL@ $(INSTALL_DATA) $(srcdir)/urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
128@IF_PERL@ for ext in perl/*; do test -f "$$ext" && $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/"$$ext"; done 104@IF_PERL@ for ext in $(srcdir)/perl/*; do test -f "$$ext" && $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/; done
129 105
130install: allbin alldoc install-perl 106install-bin: allbin
131 $(INSTALL) -d $(DESTDIR)$(bindir) 107 $(INSTALL) -d $(DESTDIR)$(bindir)
132 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME) 108 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
133 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME) 109 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
134 $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME) 110 $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
135 111
112install: install-bin install-perl
113
136perlxsi.c: Makefile 114perlxsi.c: Makefile
137 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt 115 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
138 116
139rxvtperl.C: rxvtperl.xs typemap 117rxvtperl.C: rxvtperl.xs iom_perl.h iom_perl.xs typemap typemap.iom
140 $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap -prototypes rxvtperl.xs >$@ 118 PERL="$(PERL)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap.iom -typemap typemap -prototypes $(srcdir)/rxvtperl.xs >$@
141 119
142rxvtperl.o: rxvtperl.C perlxsi.c 120rxvtperl.o: rxvtperl.C perlxsi.c
143 $(COMPILE) @PERLFLAGS@ -DLIBDIR="\"$(libdir)/urxvt\"" -c $< 121 $(COMPILE) $(PERLFLAGS) -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
144 122
145depend: 123depend:
146 makedepend -f Makefile.in -I. -Y *.C -a -o .lo >/dev/null 2>&1 124 makedepend -f Makefile.in -I. -I.. -I../libev -Y *.C >/dev/null 2>&1
147 125
148# DO NOT DELETE: nice dependency list follows 126# DO NOT DELETE: nice dependency list follows
149 127
150command.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 128background.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
151command.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h 129background.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
152command.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h 130background.o: ../libev/ev.h callback.h scrollbar.h salloc.h libptytty.h
153command.o: command.h keyboard.h 131background.o: rxvtperl.h background.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
134command.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h
135command.o: background.h rsinc.h optinc.h version.h command.h
154encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h 136encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
155encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h 137encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
156encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h 138encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
157encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h 139encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
158encoding.o: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h 140encoding.o: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
164encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h 146encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
165encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h 147encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
166encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h 148encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
167encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h 149encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
168encoding.o: table/compose.h table/category.h 150encoding.o: table/compose.h table/category.h
151ev_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
169fdpass.o: ../config.h libptytty.h 153fdpass.o: ../config.h libptytty.h
170init.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h 154init.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
171init.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 155init.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
172init.o: libptytty.h rxvtperl.h hookinc.h rsinc.h init.h 156init.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h background.h
173iom.o: iom.h iom_conf.h rxvtutil.h callback.h 157init.o: rsinc.h optinc.h init.h keyboard.h
174keyboard.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 158keyboard.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
175keyboard.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h 159keyboard.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
176keyboard.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h 160keyboard.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h
177keyboard.o: command.h 161keyboard.o: background.h rsinc.h optinc.h
178logging.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h 162logging.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h feature.h
179logging.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h 163logging.o: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h
180logging.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h 164logging.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h
165logging.o: rxvtperl.h background.h rsinc.h optinc.h
181main.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h 166main.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
182main.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 167main.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
183main.o: libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h 168main.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h background.h
169main.o: rsinc.h optinc.h init.h keyboard.h
184misc.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h 170misc.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
185misc.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 171misc.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
186misc.o: libptytty.h rxvtperl.h hookinc.h rsinc.h 172misc.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h background.h
187netdisp.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 173misc.o: rsinc.h optinc.h
188netdisp.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
189netdisp.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
190proxy.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h 174proxy.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h feature.h
191proxy.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h 175proxy.o: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h
192proxy.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h 176proxy.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h
177proxy.o: rxvtperl.h background.h rsinc.h optinc.h
193ptytty.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h 178ptytty.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h feature.h
194ptytty.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h 179ptytty.o: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h
195ptytty.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h 180ptytty.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h
181ptytty.o: rxvtperl.h background.h rsinc.h optinc.h
196rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h 182rxvt.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
197rxvt.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 183rxvt.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
198rxvt.o: libptytty.h rxvtperl.h hookinc.h rsinc.h 184rxvt.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h background.h
185rxvt.o: rsinc.h optinc.h
199rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h 186rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h feature.h
200rxvtc.o: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h 187rxvtc.o: encoding.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
201rxvtc.o: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h 188rxvtc.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h
202rxvtd.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 189rxvtc.o: rxvtperl.h background.h rsinc.h optinc.h
203rxvtd.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h 190rxvtd.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
204rxvtd.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h 191rxvtd.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
192rxvtd.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h background.h
193rxvtd.o: rsinc.h optinc.h rxvtdaemon.h
205rxvtdaemon.o: rxvtdaemon.h rxvtutil.h 194rxvtdaemon.o: rxvtdaemon.h rxvtutil.h
206rxvtfont.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 195rxvtfont.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
207rxvtfont.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h 196rxvtfont.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
208rxvtfont.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h 197rxvtfont.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h
209rxvtfont.o: table/linedraw.h 198rxvtfont.o: background.h rsinc.h optinc.h
210rxvtperl.o: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h 199rxvttoolkit.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
211rxvtperl.o: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h 200rxvttoolkit.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
212rxvtperl.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h 201rxvttoolkit.o: ../libev/ev.h callback.h scrollbar.h salloc.h libptytty.h
213rxvtperl.o: perlxsi.c 202rxvttoolkit.o: rxvtperl.h background.h rsinc.h optinc.h
214rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
215rxvttoolkit.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
216rxvttoolkit.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
217rxvtutil.o: rxvtutil.h 203rxvtutil.o: rxvtutil.h
218salloc.o: salloc.h 204salloc.o: salloc.h
219screen.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 205screen.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
220screen.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h 206screen.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
221screen.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C 207screen.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h background.h
208screen.o: rsinc.h optinc.h salloc.C
222scrollbar-next.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 209scrollbar-next.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
223scrollbar-next.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h 210scrollbar-next.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
211scrollbar-next.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h
224scrollbar-next.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h 212scrollbar-next.o: salloc.h libptytty.h rxvtperl.h background.h rsinc.h
225scrollbar-next.o: rsinc.h 213scrollbar-next.o: optinc.h
226scrollbar-plain.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 214scrollbar-plain.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
227scrollbar-plain.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h 215scrollbar-plain.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
216scrollbar-plain.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h
228scrollbar-plain.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h 217scrollbar-plain.o: salloc.h libptytty.h rxvtperl.h background.h rsinc.h
229scrollbar-plain.o: rsinc.h 218scrollbar-plain.o: optinc.h
230scrollbar-rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 219scrollbar-rxvt.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
231scrollbar-rxvt.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h 220scrollbar-rxvt.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
221scrollbar-rxvt.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h
232scrollbar-rxvt.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h 222scrollbar-rxvt.o: salloc.h libptytty.h rxvtperl.h background.h rsinc.h
233scrollbar-rxvt.o: rsinc.h 223scrollbar-rxvt.o: optinc.h
234scrollbar-xterm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 224scrollbar-xterm.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h
235scrollbar-xterm.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h 225scrollbar-xterm.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
226scrollbar-xterm.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h
236scrollbar-xterm.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h 227scrollbar-xterm.o: salloc.h libptytty.h rxvtperl.h background.h rsinc.h
237scrollbar-xterm.o: rsinc.h 228scrollbar-xterm.o: optinc.h
238scrollbar.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h 229scrollbar.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
239scrollbar.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h 230scrollbar.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
240scrollbar.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
241xdefaults.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
242xdefaults.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
243xdefaults.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
244xdefaults.o: keyboard.h
245xpm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
246xpm.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
247xpm.o: libptytty.h rxvtperl.h hookinc.h rsinc.h
248
249command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
250command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
251command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
252command.lo: command.h keyboard.h
253encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
254encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
255encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
256encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
257encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
258encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
259encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
260encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
261encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
262encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
263encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
264encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
265encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
266encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
267encoding.lo: table/compose.h table/category.h
268fdpass.lo: ../config.h libptytty.h
269init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
270init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
271init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
272iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
273keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
274keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
275keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
276keyboard.lo: command.h
277logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
278logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
279logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
280main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
281main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
282main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
283misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
284misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
285misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
286netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
287netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
288netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
289proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
290proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
291proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
292ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
293ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
294ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
295rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
296rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
297rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
298rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
299rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
300rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
301rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
302rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
303rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
304rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
305rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
306rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
307rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
308rxvtfont.lo: table/linedraw.h
309rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
310rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
311rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
312rxvtperl.lo: perlxsi.c
313rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
314rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
315rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
316rxvtutil.lo: rxvtutil.h
317salloc.lo: salloc.h
318screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
319screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
320screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
321scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
322scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
323scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h 231scrollbar.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h
324scrollbar-next.lo: rsinc.h 232scrollbar.o: background.h rsinc.h optinc.h
325scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h 233xdefaults.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
326scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h 234xdefaults.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
327scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h 235xdefaults.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h
328scrollbar-plain.lo: hookinc.h rsinc.h 236xdefaults.o: background.h rsinc.h optinc.h version.h
329scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
330scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
331scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
332scrollbar-rxvt.lo: rsinc.h
333scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
334scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
335scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
336scrollbar-xterm.lo: hookinc.h rsinc.h
337scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
338scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
339scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
340xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
341xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
342xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
343xdefaults.lo: keyboard.h
344xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
345xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
346xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h
347
348command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
349command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
350command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
351command.lo: command.h keyboard.h
352encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
353encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
354encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
355encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
356encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
357encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
358encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
359encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
360encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
361encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
362encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
363encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
364encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
365encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
366encoding.lo: table/compose.h table/category.h
367fdpass.lo: ../config.h libptytty.h
368init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
369init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
370init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
371iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
372keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
373keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
374keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
375keyboard.lo: command.h
376logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
377logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
378logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
379main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
380main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
381main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
382misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
383misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
384misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
385netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
386netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
387netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
388proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
389proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
390proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
391ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
392ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
393ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
394rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
395rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
396rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
397rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
398rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
399rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
400rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
401rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
402rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
403rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
404rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
405rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
406rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
407rxvtfont.lo: table/linedraw.h
408rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
409rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
410rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
411rxvtperl.lo: perlxsi.c
412rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
413rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
414rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
415rxvtutil.lo: rxvtutil.h
416salloc.lo: salloc.h
417screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
418screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
419screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
420scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
421scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
422scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
423scrollbar-next.lo: rsinc.h
424scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
425scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
426scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
427scrollbar-plain.lo: hookinc.h rsinc.h
428scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
429scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
430scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
431scrollbar-rxvt.lo: rsinc.h
432scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
433scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
434scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
435scrollbar-xterm.lo: hookinc.h rsinc.h
436scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
437scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
438scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
439xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
440xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
441xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
442xdefaults.lo: keyboard.h
443xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
444xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
445xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h
446
447command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
448command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
449command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
450command.lo: command.h keyboard.h
451encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
452encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
453encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
454encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
455encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
456encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
457encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
458encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
459encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
460encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
461encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
462encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
463encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
464encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
465encoding.lo: table/compose.h table/category.h
466fdpass.lo: ../config.h libptytty.h
467init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
468init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
469init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
470iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
471keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
472keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
473keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
474keyboard.lo: command.h
475logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
476logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
477logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
478main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
479main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
480main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
481misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
482misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
483misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
484netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
485netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
486netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
487proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
488proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
489proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
490ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
491ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
492ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
493rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
494rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
495rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
496rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
497rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
498rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
499rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
500rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
501rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
502rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
503rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
504rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
505rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
506rxvtfont.lo: table/linedraw.h
507rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
508rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
509rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
510rxvtperl.lo: perlxsi.c
511rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
512rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
513rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
514rxvtutil.lo: rxvtutil.h
515salloc.lo: salloc.h
516screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
517screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
518screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
519scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
520scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
521scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
522scrollbar-next.lo: rsinc.h
523scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
524scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
525scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
526scrollbar-plain.lo: hookinc.h rsinc.h
527scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
528scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
529scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
530scrollbar-rxvt.lo: rsinc.h
531scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
532scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
533scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
534scrollbar-xterm.lo: hookinc.h rsinc.h
535scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
536scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
537scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
538xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
539xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
540xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
541xdefaults.lo: keyboard.h
542xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
543xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
544xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h
545
546command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
547command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
548command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
549command.lo: command.h keyboard.h
550encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
551encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
552encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
553encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
554encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
555encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
556encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
557encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
558encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
559encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
560encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
561encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
562encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
563encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
564encoding.lo: table/compose.h table/category.h
565fdpass.lo: ../config.h libptytty.h
566init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
567init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
568init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
569iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
570keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
571keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
572keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
573keyboard.lo: command.h
574logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
575logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
576logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
577main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
578main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
579main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
580misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
581misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
582misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
583netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
584netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
585netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
586proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
587proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
588proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
589ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
590ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
591ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
592rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
593rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
594rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
595rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
596rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
597rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
598rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
599rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
600rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
601rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
602rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
603rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
604rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
605rxvtfont.lo: table/linedraw.h
606rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
607rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
608rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
609rxvtperl.lo: perlxsi.c
610rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
611rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
612rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
613rxvtutil.lo: rxvtutil.h
614salloc.lo: salloc.h
615screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
616screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
617screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
618scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
619scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
620scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
621scrollbar-next.lo: rsinc.h
622scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
623scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
624scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
625scrollbar-plain.lo: hookinc.h rsinc.h
626scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
627scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
628scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
629scrollbar-rxvt.lo: rsinc.h
630scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
631scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
632scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
633scrollbar-xterm.lo: hookinc.h rsinc.h
634scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
635scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
636scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
637xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
638xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
639xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
640xdefaults.lo: keyboard.h
641xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
642xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
643xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines