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.84 by root, Thu Dec 14 17:33:53 2006 UTC vs.
Revision 1.191 by root, Sat Jul 3 04:04:12 2021 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines