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.63 by root, Mon Jan 30 16:12:58 2006 UTC vs.
Revision 1.104 by ayin, Fri Sep 14 15:10:51 2007 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines