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.47 by ayin, Mon Jan 16 17:17:05 2006 UTC vs.
Revision 1.56 by root, Sun Jan 22 00:53:56 2006 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines