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.32 by root, Mon Jan 2 16:04:34 2006 UTC vs.
Revision 1.64 by root, Tue Jan 31 00:26:57 2006 UTC

1@MCOMMON@ 1DATE=@DATE@
2 2VERSION=@VERSION@
3LINT = lint -DNARROWPROTO=1 $(XINC) -chapbxz 3RXVTNAME=@RXVTNAME@
4SHELL = /bin/sh
5prefix = @prefix@
6exec_prefix = @exec_prefix@
7bindir = @bindir@
8libdir = @libdir@
9includedir = @includedir@
10CC = @CC@
11CXX = @CXX@
12CPP = @CPP@
13MV = @MV@
14CP = @CP@
15LN = @LN@
16SED = @SED@
17ECHO = @ECHO@
18PERL = @PERL@
19INSTALL = @INSTALL@
20INSTALL_PROGRAM = @INSTALL@ -m 755
21INSTALL_DATA = @INSTALL@ -m 644
22CXXFLAGS = @CXXFLAGS@
23CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@
24LDFLAGS = @LDFLAGS@
25DEFS = @DEFS@
26LIBS = @LIBS@
27DINCLUDE = @DINCLUDE@
28DLIB = @DLIB@
29XINC = @X_CFLAGS@ @XPM_CFLAGS@
30XLIB = @X_LIBS@ @XPM_LIBS@ -lX11 @X_EXTRA_LIBS@
31COMPILE = $(CXX) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CXXFLAGS) $(DEBUG) $(DINCLUDE) $(XINC) -I$(basedir) -I$(srcdir) -I.
32LINK = @LINKER@ $(LDFLAGS)
4 33
5srcdir = @srcdir@ 34srcdir = @srcdir@
6VPATH = @srcdir@ 35VPATH = @srcdir@
7.PATH: @srcdir@ 36.PATH: @srcdir@
8 37
9top_builddir = .. 38top_builddir = ..
10basedir = .. 39basedir = ..
11thisdir = src 40thisdir = src
12 41
13# for developers: the following debug options may be used
14# -DDEBUG_CMD -DDEBUG_MAIN -DDEBUG_MENU -DDEBUG_MENUARROWS
15# -DDEBUG_MENUBAR_STACKING -DDEBUG_MENU_LAYOUT -DDEBUG_RESOURCES
16# -DDEBUG_SEARCH_PATH -DDEBUG_SIZE -DDEBUG_TTY -DDEBUG_TTYMODE
17# -DDEBUG_KEYBOARD
18DEBUG=-DDEBUG_STRICT @DEBUG@ 42DEBUG=-DDEBUG_STRICT
19 43
20first_rule: all 44first_rule: all
21dummy: 45dummy:
22 46
23COMMON = \ 47COMMON = \
24 command.o rxvtfont.o init.o logging.o @PERL_O@ \ 48 command.o rxvtfont.o init.o logging.o main.o misc.o netdisp.o \
25 main.o menubar.o misc.o netdisp.o ptytty.o screen.o \ 49 ptytty.o proxy.o screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \
26 scrollbar.o scrollbar-next.o scrollbar-rxvt.o scrollbar-xterm.o scrollbar-plain.o \ 50 scrollbar-xterm.o scrollbar-plain.o xdefaults.o xpm.o encoding.o \
27 strings.o xdefaults.o xpm.o encoding.o rxvttoolkit.o rxvtutil.o iom.o keyboard.o 51 rxvttoolkit.o rxvtutil.o iom.o keyboard.o fdpass.o @PERL_O@
28 52
29COMMON_DAEMON = rxvtdaemon.o fdpass.o 53COMMON_DAEMON = rxvtdaemon.o
30 54
31RXVT_BASENAME=`$(ECHO) $(RXVTNAME)|$(SED) 's/$(EXEEXT)$$//'|$(SED) '$(transform)'` 55RXVT_BASENAME=`$(ECHO) $(RXVTNAME)|$(SED) 's/$(EXEEXT)$$//'|$(SED) '$(transform)'`
32RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)$(EXEEXT) 56RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)$(EXEEXT)
33RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)c$(EXEEXT) 57RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)c$(EXEEXT)
34RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)d$(EXEEXT) 58RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)d$(EXEEXT)
35RXVT_OLDNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)-old$(EXEEXT)
36 59
37# 60#
38# Distribution variables 61# Distribution variables
39# 62#
40 63
57#------------------------------------------------------------------------- 80#-------------------------------------------------------------------------
58 81
59all: allbin 82all: allbin
60 83
61rxvt: rxvt.o $(COMMON) 84rxvt: rxvt.o $(COMMON)
62 $(LINK) -o $@ $^ $(LIBS) $(XLIB) $(DLIB) @PERLLIB@ 85 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) $(DLIB) @PERLLIB@
63# $(LIBTOOL) --mode=link $(LINK) rxvt.o librxvt.la $(LIBS) $(XLIB) $(DLIB) -o $@ 86# $(LIBTOOL) --mode=link $(LINK) rxvt.o librxvt.la $(LIBS) $(XLIB) $(DLIB) -o $@
64 87
65rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON) 88rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON)
66 $(LINK) -o $@ $^ $(LIBS) $(XLIB) $(DLIB) @PERLLIB@ 89 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) $(DLIB) @PERLLIB@
67# $(LIBTOOL) --mode=link $(LINK) rxvtd.o rxvtdaemon.o librxvt.la $(LIBS) $(XLIB) $(DLIB) -o $@ 90# $(LIBTOOL) --mode=link $(LINK) rxvtd.o rxvtdaemon.o librxvt.la $(LIBS) $(XLIB) $(DLIB) -o $@
68 91
69rxvtc: rxvtc.o $(COMMON_DAEMON) 92rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass.o
70 $(LINK) -o $@ $^ $(LIBS) $(DLIB) 93 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass.o $(LIBS) $(DLIB)
71# $(LIBTOOL) --mode=link $(LINK) rxvtc.o rxvtdaemon.o $(LIBS) $(DLIB) -o $@ 94# $(LIBTOOL) --mode=link $(LINK) rxvtc.o rxvtdaemon.o $(LIBS) $(DLIB) -o $@
72 95
73#librxvt.la: $(LIBOBJS) 96#librxvt.la: $(LIBOBJS)
74# $(LIBTOOL) --mode=link $(LINK) -rpath $(libdir) -version-info $(LIBVERSION) $(LIBOBJS) $(LIBS) -o $@ 97# $(LIBTOOL) --mode=link $(LINK) -rpath $(libdir) -version-info $(LIBVERSION) $(LIBOBJS) $(LIBS) -o $@
75 98
76#------------------------------------------------------------------------- 99#-------------------------------------------------------------------------
77 100
78tags: 101tags: *.[Ch]
79 ctags *.h *.C 102 ctags *.[Ch]
103
104TAGS: *.[Ch]
105 etags *.[Ch]
80 106
81allbin: rxvt rxvtd rxvtc 107allbin: rxvt rxvtd rxvtc
82 108
83alldoc: 109alldoc:
84 110
85clean: 111clean:
86 $(RMF) rxvt rxvtc rxvtd core a.out *.o *.lo *.bak *~ *.intpro .libs/* librxvt.la tmpproto *.tmp 112 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C
113 rm -f *.o *.lo .libs/* librxvt.la tmpproto *.tmp
87 114
88realclean: clean 115realclean: clean
89 $(RMF) tags librxvt.h 116 rm -f tags TAGS librxvt.h
90 117
91cleandir: realclean 118cleandir: realclean
92 119
93distclean: realclean 120distclean: realclean
94 (cd $(srcdir); $(RMF) Makefile) 121 (cd $(srcdir); rm -f Makefile)
95 122
96install-perl: 123install-perl:
97@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir) 124@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)
98@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt 125@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
99@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl-ext 126@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl
100@IF_PERL@ $(INSTALL_DATA) urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm 127@IF_PERL@ $(INSTALL_DATA) urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
101@IF_PERL@ for ext in perl-ext/*; do $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/"$$ext"; done 128@IF_PERL@ for ext in perl/*; do test -f "$$ext" && $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/"$$ext"; done
102 129
103install: allbin alldoc install-perl 130install: allbin alldoc install-perl
104 $(INSTALL) -d $(DESTDIR)$(bindir) 131 $(INSTALL) -d $(DESTDIR)$(bindir)
105 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME) 132 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
106 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME) 133 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
108 135
109perlxsi.c: Makefile 136perlxsi.c: Makefile
110 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt 137 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
111 138
112rxvtperl.C: rxvtperl.xs typemap 139rxvtperl.C: rxvtperl.xs typemap
113 $(PERL) @PERLARCHLIB@/ExtUtils/xsubpp -C++ -typemap @PERLARCHLIB@/ExtUtils/typemap -typemap typemap -prototypes $< >$@ 140 $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap -prototypes rxvtperl.xs >$@
114 141
115rxvtperl.o: rxvtperl.C perlxsi.c 142rxvtperl.o: rxvtperl.C perlxsi.c
116 $(COMPILE) @PERLFLAGS@ -DLIBDIR="\"$(libdir)/urxvt\"" -c $< 143 $(COMPILE) @PERLFLAGS@ -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
117 144
118depend: 145depend:
119 makedepend -f Makefile.in -I. -Y *.C >/dev/null 2>&1
120 makedepend -f Makefile.in -I. -Y *.C -a -o .lo >/dev/null 2>&1 146 makedepend -f Makefile.in -I. -Y *.C -a -o .lo >/dev/null 2>&1
121 147
122# DO NOT DELETE: nice dependency list follows 148# DO NOT DELETE: nice dependency list follows
123 149
124command.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 150command.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
125command.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 151command.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
126command.o: salloc.h menubar.h rxvtperl.h version.h command.h keyboard.h 152command.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
153command.o: command.h keyboard.h
127encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h 154encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
128encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h 155encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
129encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h 156encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
130encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h 157encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
131encoding.o: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h 158encoding.o: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
137encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h 164encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
138encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h 165encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
139encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h 166encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
140encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h 167encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
141encoding.o: table/compose.h table/category.h 168encoding.o: table/compose.h table/category.h
142fdpass.o: ../config.h fdpass.h 169fdpass.o: ../config.h libptytty.h
143init.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h 170init.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
144init.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 171init.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
145init.o: menubar.h init.h 172init.o: libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
146iom.o: iom.h iom_conf.h rxvtutil.h callback.h 173iom.o: iom.h iom_conf.h rxvtutil.h callback.h
147keyboard.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 174keyboard.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
148keyboard.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 175keyboard.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
149keyboard.o: salloc.h menubar.h keyboard.h command.h 176keyboard.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
150logging.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 177keyboard.o: command.h
151logging.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 178logging.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
152logging.o: salloc.h menubar.h logging.h 179logging.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
180logging.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
153main.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h 181main.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
154main.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 182main.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
155main.o: menubar.h keyboard.h rxvtperl.h 183main.o: libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
156menubar.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
157menubar.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
158menubar.o: salloc.h menubar.h version.h
159misc.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h 184misc.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
160misc.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 185misc.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
161misc.o: menubar.h 186misc.o: libptytty.h rxvtperl.h hookinc.h rsinc.h
162netdisp.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 187netdisp.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
163netdisp.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 188netdisp.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
164netdisp.o: salloc.h menubar.h 189netdisp.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
165ptytty.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 190proxy.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
166ptytty.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 191proxy.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
167ptytty.o: salloc.h menubar.h 192proxy.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
193ptytty.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
194ptytty.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
195ptytty.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
168rxvt.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h 196rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
169rxvt.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 197rxvt.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
170rxvt.o: menubar.h 198rxvt.o: libptytty.h rxvtperl.h hookinc.h rsinc.h
171rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h fdpass.h rxvt.h rxvtlib.h 199rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
172rxvtc.o: ptytty.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h 200rxvtc.o: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
173rxvtc.o: iom_conf.h callback.h salloc.h menubar.h 201rxvtc.o: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
174rxvtd.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 202rxvtd.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
175rxvtd.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 203rxvtd.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
176rxvtd.o: salloc.h menubar.h rxvtdaemon.h fdpass.h 204rxvtd.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
177rxvtdaemon.o: rxvtdaemon.h rxvtutil.h 205rxvtdaemon.o: rxvtdaemon.h rxvtutil.h
178rxvtfont.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 206rxvtfont.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
179rxvtfont.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 207rxvtfont.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
180rxvtfont.o: salloc.h menubar.h table/linedraw.h 208rxvtfont.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
181rxvtperl.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 209rxvtfont.o: table/linedraw.h
182rxvtperl.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 210rxvtperl.o: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
183rxvtperl.o: salloc.h menubar.h rxvtperl.h perlxsi.c 211rxvtperl.o: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
212rxvtperl.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
213rxvtperl.o: perlxsi.c
184rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 214rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
185rxvttoolkit.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 215rxvttoolkit.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
186rxvttoolkit.o: callback.h salloc.h menubar.h 216rxvttoolkit.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
187rxvtutil.o: rxvtutil.h 217rxvtutil.o: rxvtutil.h
188salloc.o: salloc.h 218salloc.o: salloc.h
189screen.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 219screen.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
190screen.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 220screen.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
191screen.o: salloc.h menubar.h rxvtperl.h salloc.C 221screen.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
192scrollbar-next.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 222scrollbar-next.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
193scrollbar-next.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 223scrollbar-next.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
194scrollbar-next.o: callback.h salloc.h menubar.h 224scrollbar-next.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
225scrollbar-next.o: rsinc.h
195scrollbar-plain.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 226scrollbar-plain.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
196scrollbar-plain.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 227scrollbar-plain.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
197scrollbar-plain.o: callback.h salloc.h menubar.h 228scrollbar-plain.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
229scrollbar-plain.o: rsinc.h
198scrollbar-rxvt.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 230scrollbar-rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
199scrollbar-rxvt.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 231scrollbar-rxvt.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
200scrollbar-rxvt.o: callback.h salloc.h menubar.h 232scrollbar-rxvt.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
233scrollbar-rxvt.o: rsinc.h
201scrollbar-xterm.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 234scrollbar-xterm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
202scrollbar-xterm.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 235scrollbar-xterm.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
203scrollbar-xterm.o: callback.h salloc.h menubar.h 236scrollbar-xterm.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
237scrollbar-xterm.o: rsinc.h
204scrollbar.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 238scrollbar.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
205scrollbar.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 239scrollbar.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
206scrollbar.o: salloc.h menubar.h 240scrollbar.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
207strings.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
208strings.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
209strings.o: salloc.h menubar.h
210xdefaults.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 241xdefaults.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
211xdefaults.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 242xdefaults.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
212xdefaults.o: salloc.h menubar.h version.h keyboard.h 243xdefaults.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
244xdefaults.o: keyboard.h
213xpm.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h 245xpm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
214xpm.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 246xpm.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
215xpm.o: menubar.h 247xpm.o: libptytty.h rxvtperl.h hookinc.h rsinc.h
216 248
217command.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 249command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
218command.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 250command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
219command.lo: salloc.h menubar.h rxvtperl.h version.h command.h keyboard.h 251command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
252command.lo: command.h keyboard.h
220encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h 253encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
221encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h 254encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
222encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h 255encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
223encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h 256encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
224encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h 257encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
230encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h 263encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
231encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h 264encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
232encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h 265encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
233encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h 266encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
234encoding.lo: table/compose.h table/category.h 267encoding.lo: table/compose.h table/category.h
235fdpass.lo: ../config.h fdpass.h 268fdpass.lo: ../config.h libptytty.h
236init.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 269init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
237init.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 270init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
238init.lo: salloc.h menubar.h init.h 271init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
239iom.lo: iom.h iom_conf.h rxvtutil.h callback.h 272iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
240keyboard.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 273keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
241keyboard.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 274keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
242keyboard.lo: salloc.h menubar.h keyboard.h command.h 275keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
243logging.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 276keyboard.lo: command.h
244logging.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 277logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
245logging.lo: salloc.h menubar.h logging.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
246main.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 280main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
247main.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 281main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
248main.lo: salloc.h menubar.h keyboard.h rxvtperl.h 282main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
249menubar.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
250menubar.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
251menubar.lo: salloc.h menubar.h version.h
252misc.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 283misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
253misc.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 284misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
254misc.lo: salloc.h menubar.h 285misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
255netdisp.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 286netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
256netdisp.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 287netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
257netdisp.lo: salloc.h menubar.h 288netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
258ptytty.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 289proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
259ptytty.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 290proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
260ptytty.lo: salloc.h menubar.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
261rxvt.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 295rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
262rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 296rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
263rxvt.lo: salloc.h menubar.h 297rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
264rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h fdpass.h rxvt.h rxvtlib.h 298rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
265rxvtc.lo: ptytty.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h 299rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
266rxvtc.lo: iom_conf.h callback.h salloc.h menubar.h 300rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
267rxvtd.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 301rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
268rxvtd.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 302rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
269rxvtd.lo: salloc.h menubar.h rxvtdaemon.h fdpass.h 303rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
270rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h 304rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
271rxvtfont.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 305rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
272rxvtfont.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.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
273rxvtfont.lo: salloc.h menubar.h table/linedraw.h 308rxvtfont.lo: table/linedraw.h
274rxvtperl.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 309rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
275rxvtperl.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 310rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
276rxvtperl.lo: salloc.h menubar.h rxvtperl.h perlxsi.c 311rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
312rxvtperl.lo: perlxsi.c
277rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 313rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
278rxvttoolkit.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 314rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
279rxvttoolkit.lo: callback.h salloc.h menubar.h 315rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
280rxvtutil.lo: rxvtutil.h 316rxvtutil.lo: rxvtutil.h
281salloc.lo: salloc.h 317salloc.lo: salloc.h
282screen.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 318screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
283screen.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 319screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
284screen.lo: salloc.h menubar.h rxvtperl.h salloc.C 320screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
285scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 321scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
286scrollbar-next.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 322scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
287scrollbar-next.lo: callback.h salloc.h menubar.h 323scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
324scrollbar-next.lo: rsinc.h
288scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h 325scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
289scrollbar-plain.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h 326scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
290scrollbar-plain.lo: iom_conf.h callback.h salloc.h menubar.h 327scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
328scrollbar-plain.lo: hookinc.h rsinc.h
291scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 329scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
292scrollbar-rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 330scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
293scrollbar-rxvt.lo: callback.h salloc.h menubar.h 331scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
332scrollbar-rxvt.lo: rsinc.h
294scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h 333scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
295scrollbar-xterm.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h 334scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
296scrollbar-xterm.lo: iom_conf.h callback.h salloc.h menubar.h 335scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
336scrollbar-xterm.lo: hookinc.h rsinc.h
297scrollbar.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 337scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
298scrollbar.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 338scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
299scrollbar.lo: salloc.h menubar.h 339scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
300strings.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
301strings.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
302strings.lo: salloc.h menubar.h
303xdefaults.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 340xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
304xdefaults.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 341xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h
305xdefaults.lo: salloc.h menubar.h version.h keyboard.h 342xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
343xdefaults.lo: keyboard.h
306xpm.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h 344xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
307xpm.lo: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 345xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
308xpm.lo: menubar.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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines