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.51 by root, Tue Jan 17 15:17:39 2006 UTC vs.
Revision 1.60 by root, Tue Jan 24 19:40:12 2006 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines