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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines