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.105 by ayin, Fri Sep 14 17:10:33 2007 UTC vs.
Revision 1.155 by sf-exg, Fri Dec 23 00:20:45 2011 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines