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.54 by root, Sat Jan 21 19:02:56 2006 UTC vs.
Revision 1.97 by ayin, Wed Jun 13 12:34:32 2007 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines