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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines