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.134 by sf-exg, Thu Jul 22 16:02:47 2010 UTC vs.
Revision 1.170 by root, Fri Sep 21 22:55:56 2012 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
11CXX = @CXX@ 11CXX = @CXX@
12CPP = @CPP@
13PERL = @PERL@ 12PERL = @PERL@
14INSTALL = @INSTALL@ 13INSTALL = @INSTALL@
15INSTALL_PROGRAM = @INSTALL@ -m 755 14INSTALL_PROGRAM = @INSTALL@ -m 755
16INSTALL_DATA = @INSTALL@ -m 644 15INSTALL_DATA = @INSTALL@ -m 644
17CXXFLAGS = @CXXFLAGS@ 16CXXFLAGS = @CXXFLAGS@
18CPPFLAGS = @CPPFLAGS@ 17CPPFLAGS = @CPPFLAGS@
19LDFLAGS = @LDFLAGS@ 18LDFLAGS = @LDFLAGS@
20DEFS = @DEFS@ 19DEFS = @DEFS@
21LIBS = @LIBS@ 20LIBS = @LIBS@
22XINC = @X_CFLAGS@ @AFTERIMAGE_CFLAGS@ 21XINC = @X_CFLAGS@ @PIXBUF_CFLAGS@ @STARTUP_NOTIFICATION_CFLAGS@
23XLIB = @X_LIBS@ @AFTERIMAGE_LIBS@ -lX11 @X_EXTRA_LIBS@ 22XLIB = @X_LIBS@ -lX11 @X_EXTRA_LIBS@ @PIXBUF_LIBS@ @STARTUP_NOTIFICATION_LIBS@
24COMPILE = $(CXX) -I.. -I$(srcdir) -I. -I$(srcdir)/../libev $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(XINC) 23COMPILE = $(CXX) -I.. -I$(srcdir) -I. -I$(srcdir)/../libev -I$(srcdir)/../libptytty/src $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(XINC)
25LINK = @LINKER@ $(LDFLAGS) 24LINK = @LINKER@ $(LDFLAGS)
26EXEEXT = @EXEEXT@ 25EXEEXT = @EXEEXT@
26PERLFLAGS = @PERLFLAGS@
27PERLLIB = @PERLLIB@
27 28
28srcdir = @srcdir@ 29srcdir = @srcdir@
29VPATH = @srcdir@ 30VPATH = @srcdir@
30 31
31first_rule: all 32first_rule: all
32dummy: 33dummy:
33 34
34COMMON = \ 35COMMON = \
35 background.o command.o rxvtfont.o init.o logging.o main.o misc.o \ 36 background.o command.o rxvtfont.o init.o main.o misc.o \
36 ptytty.o proxy.o screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \ 37 screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \
37 scrollbar-xterm.o scrollbar-plain.o xdefaults.o encoding.o \ 38 scrollbar-xterm.o scrollbar-plain.o xdefaults.o encoding.o \
38 rxvttoolkit.o rxvtutil.o keyboard.o \ 39 rxvttoolkit.o rxvtutil.o keyboard.o rxvtimg.o \
39 fdpass.o ev_cpp.o @PERL_O@ 40 ev_cpp.o fdpass_wrapper.o ptytty_wrapper.o @PERL_O@
40 41
41COMMON_DAEMON = rxvtdaemon.o 42COMMON_DAEMON = rxvtdaemon.o
42 43
43RXVT_BASENAME=`echo $(RXVTNAME)|sed 's/$(EXEEXT)$$//'|sed '$(transform)'`
44RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)$(EXEEXT) 44RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)$(EXEEXT)
45RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)c$(EXEEXT) 45RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)c$(EXEEXT)
46RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)d$(EXEEXT) 46RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)d$(EXEEXT)
47 47
48# 48#
49# Distribution variables 49# Distribution variables
50# 50#
51 51
59#------------------------------------------------------------------------- 59#-------------------------------------------------------------------------
60 60
61all: allbin 61all: allbin
62 62
63rxvt: rxvt.o $(COMMON) 63rxvt: rxvt.o $(COMMON)
64 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) @PERLLIB@ 64 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) $(PERLLIB)
65 65
66rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON) 66rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON)
67 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) @PERLLIB@ 67 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) $(PERLLIB)
68 68
69rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass.o 69rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o
70 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass.o $(LIBS) 70 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o $(LIBS)
71 71
72#------------------------------------------------------------------------- 72#-------------------------------------------------------------------------
73 73
74#EXUBERANT_OPTS = -I NOTHROW 74#EXUBERANT_OPTS = -I NOTHROW -I THROW
75 75
76tags: *.[Ch] 76tags: *.[Ch]
77 ctags $(EXUBERANT_OPTS) *.[Ch] 77 ctags $(EXUBERANT_OPTS) *.[Ch]
78 78
79TAGS: *.[Ch] 79TAGS: *.[Ch]
82allbin: rxvt rxvtd rxvtc 82allbin: rxvt rxvtd rxvtc
83 83
84alldoc: 84alldoc:
85 85
86clean: 86clean:
87 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C 87 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C mantmp
88 rm -f *.o 88 rm -f *.o
89 89
90distclean: clean 90distclean: clean
91 rm -f Makefile 91 rm -f Makefile
92 92
98install-perl: 98install-perl:
99@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir) 99@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)
100@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt 100@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
101@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl 101@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl
102@IF_PERL@ $(INSTALL_DATA) $(srcdir)/urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm 102@IF_PERL@ $(INSTALL_DATA) $(srcdir)/urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
103@IF_PERL@ for ext in $(srcdir)/perl/*; do test -f "$$ext" && $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/; done 103@IF_PERL@ cd $(srcdir)/perl; for ext in *; do \
104@IF_PERL@ test -f "$$ext" || continue; \
105@IF_PERL@ $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/; \
106@IF_PERL@ < "$$ext" \
107@IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "abc", quotes => q<"> , center => q<RXVT-UNICODE>)->parse_from_file' \
108@IF_PERL@ > ../mantmp; \
109@IF_PERL@ test -s ../mantmp && $(INSTALL_DATA) ../mantmp $(DESTDIR)$(man1dir)/$(RXVTNAME)-$$ext.$(man1ext); \
110@IF_PERL@ done
104 111
105install-bin: allbin 112install-bin: allbin
106 $(INSTALL) -d $(DESTDIR)$(bindir) 113 $(INSTALL) -d $(DESTDIR)$(bindir)
107 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME) 114 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
108 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME) 115 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
115 122
116rxvtperl.C: rxvtperl.xs iom_perl.h iom_perl.xs typemap typemap.iom 123rxvtperl.C: rxvtperl.xs iom_perl.h iom_perl.xs typemap typemap.iom
117 PERL="$(PERL)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap.iom -typemap typemap -prototypes $(srcdir)/rxvtperl.xs >$@ 124 PERL="$(PERL)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap.iom -typemap typemap -prototypes $(srcdir)/rxvtperl.xs >$@
118 125
119rxvtperl.o: rxvtperl.C perlxsi.c 126rxvtperl.o: rxvtperl.C perlxsi.c
120 $(COMPILE) @PERLFLAGS@ -DLIBDIR="\"$(libdir)/urxvt\"" -c $< 127 $(COMPILE) $(PERLFLAGS) -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
121 128
122depend: 129depend:
123 makedepend -f Makefile.in -I. -I.. -I../libev -Y *.C >/dev/null 2>&1 130 makedepend -f Makefile.in -I. -I.. -I../libptytty/src -I../libev -Y *.C *.xs >/dev/null 2>&1
124 131
125# DO NOT DELETE: nice dependency list follows 132# DO NOT DELETE: nice dependency list follows
126 133
127background.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h 134background.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
135background.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
128background.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h 136background.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
129background.o: ../libev/ev.h callback.h scrollbar.h salloc.h libptytty.h 137background.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
130background.o: rxvtperl.h hookinc.h background.h rsinc.h optinc.h 138background.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
131command.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h 139background.o: optinc.h
140command.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
141command.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
132command.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 142command.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
133command.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h 143command.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
134command.o: background.h rsinc.h optinc.h version.h command.h keyboard.h 144command.o: rxvtperl.h hookinc.h rsinc.h optinc.h version.h command.h
135encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h 145command.o: keyboard.h
136encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h 146encoding.o: ../config.h encoding.h rxvtutil.h ../libptytty/src/ecb.h
147encoding.o: ../libptytty/src/estl.h emman.h table/iso8859_1.h
137encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h 148encoding.o: table/iso8859_15.h table/iso8859_2.h table/iso8859_3.h
138encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h 149encoding.o: table/iso8859_4.h table/iso8859_5.h table/iso8859_6.h
139encoding.o: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h 150encoding.o: table/iso8859_7.h table/iso8859_8.h table/iso8859_9.h
140encoding.o: table/iso8859_16.h table/koi8_r.h table/koi8_u.h 151encoding.o: table/iso8859_10.h table/iso8859_11.h table/iso8859_13.h
152encoding.o: table/iso8859_14.h table/iso8859_16.h table/koi8_r.h
141encoding.o: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h 153encoding.o: table/koi8_u.h table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
142encoding.o: table/gb2312_1980_0.h table/cns11643_1992_1.h 154encoding.o: table/gb2312_1980_0.h table/cns11643_1992_1.h
143encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h 155encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h
144encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h 156encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h
145encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h 157encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
146encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h 158encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
147encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h 159encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
148encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h 160encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
149encoding.o: table/compose.h table/category.h 161encoding.o: table/compose.h table/category.h
150ev_cpp.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h ../libev/ev.c 162ev_cpp.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h ../libev/ev.c
151ev_cpp.o: ../libev/ev_vars.h ../libev/ev_epoll.c ../libev/ev_select.c 163ev_cpp.o: ../libev/ev_vars.h ../libev/ev_epoll.c ../libev/ev_select.c
152fdpass.o: ../config.h libptytty.h 164fdpass_wrapper.o: ../libptytty/src/fdpass.C ../config.h
153init.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h 165fdpass_wrapper.o: ../libptytty/src/libptytty.h
166init.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
167init.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
154init.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 168init.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
155init.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h 169init.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
156init.o: background.h rsinc.h optinc.h init.h keyboard.h 170init.o: hookinc.h rsinc.h optinc.h init.h keyboard.h
157keyboard.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h 171keyboard.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
172keyboard.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
158keyboard.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 173keyboard.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
159keyboard.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h 174keyboard.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
160keyboard.o: background.h rsinc.h optinc.h keyboard.h command.h 175keyboard.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h
161logging.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h feature.h 176main.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
162logging.o: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h 177main.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
163logging.o: ../config.h ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h
164logging.o: salloc.h rxvtperl.h hookinc.h background.h rsinc.h optinc.h
165main.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
166main.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 178main.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
167main.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h 179main.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
168main.o: background.h rsinc.h optinc.h keyboard.h 180main.o: hookinc.h rsinc.h optinc.h init.h keyboard.h
169misc.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h 181misc.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
182misc.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
170misc.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 183misc.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
171misc.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h 184misc.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
172misc.o: background.h rsinc.h optinc.h 185misc.o: hookinc.h rsinc.h optinc.h
173proxy.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h feature.h 186ptytty_wrapper.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
174proxy.o: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h 187ptytty_wrapper.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
175proxy.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h 188ptytty_wrapper.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h
176proxy.o: rxvtperl.h hookinc.h background.h rsinc.h optinc.h 189ptytty_wrapper.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
177ptytty.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h feature.h 190ptytty_wrapper.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
178ptytty.o: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h 191ptytty_wrapper.o: optinc.h ../libptytty/src/logging.C
179ptytty.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h 192ptytty_wrapper.o: ../libptytty/src/ptytty.h ../libptytty/src/ptytty_conf.h
180ptytty.o: rxvtperl.h hookinc.h background.h rsinc.h optinc.h 193ptytty_wrapper.o: ../libptytty/src/proxy.C ../libptytty/src/ptytty.C
181rxvt.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h 194rxvt.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
195rxvt.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
182rxvt.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 196rxvt.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
183rxvt.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h 197rxvt.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
184rxvt.o: background.h rsinc.h optinc.h 198rxvt.o: hookinc.h rsinc.h optinc.h
185rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h feature.h 199rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h ../libptytty/src/ecb.h
186rxvtc.o: encoding.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h 200rxvtc.o: ../libptytty/src/estl.h emman.h ../libptytty/src/libptytty.h
187rxvtc.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h 201rxvtd.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
188rxvtc.o: rxvtperl.h hookinc.h background.h rsinc.h optinc.h 202rxvtd.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
189rxvtd.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
190rxvtd.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 203rxvtd.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
191rxvtd.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h 204rxvtd.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
192rxvtd.o: background.h rsinc.h optinc.h rxvtdaemon.h 205rxvtd.o: hookinc.h rsinc.h optinc.h rxvtdaemon.h
193rxvtdaemon.o: rxvtdaemon.h rxvtutil.h 206rxvtdaemon.o: rxvtdaemon.h rxvtutil.h ../libptytty/src/ecb.h
194rxvtfont.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h 207rxvtdaemon.o: ../libptytty/src/estl.h emman.h
208rxvtfont.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
209rxvtfont.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
195rxvtfont.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 210rxvtfont.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
196rxvtfont.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h 211rxvtfont.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
197rxvtfont.o: background.h rsinc.h optinc.h table/linedraw.h 212rxvtfont.o: rxvtperl.h hookinc.h rsinc.h optinc.h table/linedraw.h
213rxvtimg.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
214rxvtimg.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
215rxvtimg.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
216rxvtimg.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
217rxvtimg.o: rxvtperl.h hookinc.h rsinc.h optinc.h
198rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 218rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
199rxvtperl.o: rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h 219rxvtperl.o: rxvt.h feature.h ../libptytty/src/ecb.h encoding.h rxvtutil.h
200rxvtperl.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h 220rxvtperl.o: ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
201rxvtperl.o: background.h rsinc.h optinc.h keyboard.h perlxsi.c iom_perl.h 221rxvtperl.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
202rxvttoolkit.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h 222rxvtperl.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h perlxsi.c
223rxvtperl.o: iom_perl.h
224rxvttoolkit.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
225rxvttoolkit.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
203rxvttoolkit.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h 226rxvttoolkit.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
204rxvttoolkit.o: ../libev/ev.h callback.h scrollbar.h salloc.h libptytty.h 227rxvttoolkit.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
205rxvttoolkit.o: rxvtperl.h hookinc.h background.h rsinc.h optinc.h 228rxvttoolkit.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
206rxvtutil.o: rxvtutil.h 229rxvttoolkit.o: optinc.h
207salloc.o: salloc.h 230rxvtutil.o: rxvtutil.h ../libptytty/src/ecb.h ../libptytty/src/estl.h emman.h
208screen.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h 231rxvtutil.o: emman.c
232screen.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
233screen.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
209screen.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 234screen.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
210screen.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h 235screen.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
211screen.o: background.h rsinc.h optinc.h salloc.C 236screen.o: hookinc.h rsinc.h optinc.h
212scrollbar-next.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h 237scrollbar-next.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
238scrollbar-next.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
213scrollbar-next.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h 239scrollbar-next.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
214scrollbar-next.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h 240scrollbar-next.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
215scrollbar-next.o: salloc.h libptytty.h rxvtperl.h hookinc.h background.h 241scrollbar-next.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
216scrollbar-next.o: rsinc.h optinc.h 242scrollbar-next.o: hookinc.h rsinc.h optinc.h
217scrollbar-plain.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h 243scrollbar-plain.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
244scrollbar-plain.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
218scrollbar-plain.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h 245scrollbar-plain.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
219scrollbar-plain.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h 246scrollbar-plain.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
220scrollbar-plain.o: salloc.h libptytty.h rxvtperl.h hookinc.h background.h 247scrollbar-plain.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
221scrollbar-plain.o: rsinc.h optinc.h 248scrollbar-plain.o: hookinc.h rsinc.h optinc.h
222scrollbar-rxvt.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h 249scrollbar-rxvt.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
250scrollbar-rxvt.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
223scrollbar-rxvt.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h 251scrollbar-rxvt.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
224scrollbar-rxvt.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h 252scrollbar-rxvt.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
225scrollbar-rxvt.o: salloc.h libptytty.h rxvtperl.h hookinc.h background.h 253scrollbar-rxvt.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
226scrollbar-rxvt.o: rsinc.h optinc.h 254scrollbar-rxvt.o: hookinc.h rsinc.h optinc.h
227scrollbar-xterm.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h 255scrollbar-xterm.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
256scrollbar-xterm.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
228scrollbar-xterm.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h 257scrollbar-xterm.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
229scrollbar-xterm.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h 258scrollbar-xterm.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
230scrollbar-xterm.o: salloc.h libptytty.h rxvtperl.h hookinc.h background.h 259scrollbar-xterm.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
231scrollbar-xterm.o: rsinc.h optinc.h 260scrollbar-xterm.o: hookinc.h rsinc.h optinc.h
232scrollbar.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h 261scrollbar.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
262scrollbar.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
233scrollbar.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 263scrollbar.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
234scrollbar.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h 264scrollbar.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
235scrollbar.o: background.h rsinc.h optinc.h 265scrollbar.o: rxvtperl.h hookinc.h rsinc.h optinc.h
236xdefaults.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h 266xdefaults.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
267xdefaults.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
237xdefaults.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h 268xdefaults.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
238xdefaults.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h 269xdefaults.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
239xdefaults.o: background.h rsinc.h optinc.h version.h keyboard.h 270xdefaults.o: rxvtperl.h hookinc.h rsinc.h optinc.h version.h keyboard.h
271rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
272rxvtperl.o: rxvt.h feature.h ../libptytty/src/ecb.h encoding.h rxvtutil.h
273rxvtperl.o: ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
274rxvtperl.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
275rxvtperl.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h perlxsi.c
276rxvtperl.o: iom_perl.h

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines