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.129 by ayin, Thu Feb 21 18:47:33 2008 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) $(DEBUG) $(XINC) 23COMPILE = $(CXX) -I.. -I$(srcdir) -I. -I$(srcdir)/../libev -I$(srcdir)/../libptytty/src $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(XINC)
25LINK = @LINKER@ $(LDFLAGS) 24LINK = @LINKER@ $(LDFLAGS)
25EXEEXT = @EXEEXT@
26PERLFLAGS = @PERLFLAGS@
27PERLLIB = @PERLLIB@
26 28
27srcdir = @srcdir@ 29srcdir = @srcdir@
28VPATH = @srcdir@ 30VPATH = @srcdir@
29 31
30DEBUG=-DDEBUG_STRICT
31
32first_rule: all 32first_rule: all
33dummy: 33dummy:
34 34
35COMMON = \ 35COMMON = \
36 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 \
37 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 \
38 scrollbar-xterm.o scrollbar-plain.o xdefaults.o encoding.o \ 38 scrollbar-xterm.o scrollbar-plain.o xdefaults.o encoding.o \
39 rxvttoolkit.o rxvtutil.o keyboard.o \ 39 rxvttoolkit.o rxvtutil.o keyboard.o rxvtimg.o \
40 fdpass.o ev_cpp.o @PERL_O@ 40 ev_cpp.o fdpass_wrapper.o ptytty_wrapper.o @PERL_O@
41 41
42COMMON_DAEMON = rxvtdaemon.o 42COMMON_DAEMON = rxvtdaemon.o
43 43
44RXVT_BASENAME=`echo $(RXVTNAME)|sed 's/$(EXEEXT)$$//'|sed '$(transform)'`
45RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)$(EXEEXT) 44RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)$(EXEEXT)
46RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)c$(EXEEXT) 45RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)c$(EXEEXT)
47RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)d$(EXEEXT) 46RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)d$(EXEEXT)
48 47
49# 48#
50# Distribution variables 49# Distribution variables
51# 50#
52 51
60#------------------------------------------------------------------------- 59#-------------------------------------------------------------------------
61 60
62all: allbin 61all: allbin
63 62
64rxvt: rxvt.o $(COMMON) 63rxvt: rxvt.o $(COMMON)
65 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) @PERLLIB@ 64 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) $(PERLLIB)
66 65
67rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON) 66rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON)
68 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) @PERLLIB@ 67 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) $(PERLLIB)
69 68
70rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass.o ev_cpp.o 69rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o
71 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass.o ev_cpp.o $(LIBS) 70 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o $(LIBS)
72 71
73#------------------------------------------------------------------------- 72#-------------------------------------------------------------------------
74 73
75#EXUBERANT_OPTS = -I NOTHROW 74#EXUBERANT_OPTS = -I NOTHROW -I THROW
76 75
77tags: *.[Ch] 76tags: *.[Ch]
78 ctags $(EXUBERANT_OPTS) *.[Ch] 77 ctags $(EXUBERANT_OPTS) *.[Ch]
79 78
80TAGS: *.[Ch] 79TAGS: *.[Ch]
83allbin: rxvt rxvtd rxvtc 82allbin: rxvt rxvtd rxvtc
84 83
85alldoc: 84alldoc:
86 85
87clean: 86clean:
88 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C 87 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C mantmp
89 rm -f *.o 88 rm -f *.o
90 89
91distclean: clean 90distclean: clean
92 rm -f Makefile 91 rm -f Makefile
93 92
99install-perl: 98install-perl:
100@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir) 99@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)
101@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt 100@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
102@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl 101@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl
103@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
104@IF_PERL@ for ext in $(srcdir)/perl/*; do test -f "$$ext" && $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/"`basename "$$ext"`"; 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
105 111
106install-bin: allbin 112install-bin: allbin
107 $(INSTALL) -d $(DESTDIR)$(bindir) 113 $(INSTALL) -d $(DESTDIR)$(bindir)
108 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME) 114 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
109 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME) 115 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
116 122
117rxvtperl.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
118 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 >$@
119 125
120rxvtperl.o: rxvtperl.C perlxsi.c 126rxvtperl.o: rxvtperl.C perlxsi.c
121 $(COMPILE) @PERLFLAGS@ -DLIBDIR="\"$(libdir)/urxvt\"" -c $< 127 $(COMPILE) $(PERLFLAGS) -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
122 128
123depend: 129depend:
124 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
125 131
126# DO NOT DELETE: nice dependency list follows 132# DO NOT DELETE: nice dependency list follows
127 133
128background.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
129background.o: rxvttoolkit.h ev_cpp.h ../libev/ev++.h ../libev/ev.h callback.h 135background.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
130background.o: scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h 136background.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
131background.o: background.h rsinc.h optinc.h 137background.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
132command.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h 138background.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.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
133command.o: rxvttoolkit.h ev_cpp.h ../libev/ev++.h ../libev/ev.h callback.h 142command.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
134command.o: scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h background.h 143command.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
135command.o: rsinc.h optinc.h version.h command.h keyboard.h 144command.o: rxvtperl.h hookinc.h rsinc.h optinc.h version.h command.h
136encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h 145command.o: keyboard.h
137encoding.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
138encoding.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
139encoding.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
140encoding.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
141encoding.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
142encoding.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
143encoding.o: table/gb2312_1980_0.h table/cns11643_1992_1.h 154encoding.o: table/gb2312_1980_0.h table/cns11643_1992_1.h
144encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h 155encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h
145encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h 156encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h
146encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h 157encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
147encoding.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
148encoding.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
149encoding.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
150encoding.o: table/compose.h table/category.h 161encoding.o: table/compose.h table/category.h
151ev_cpp.o: ev_cpp.h ../libev/ev++.h ../libev/ev.h ../libev/ev.c ../config.h 162ev_cpp.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h ../libev/ev.c
152ev_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
153fdpass.o: ../config.h libptytty.h 164fdpass_wrapper.o: ../libptytty/src/fdpass.C ../config.h
154init.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
155init.o: rxvttoolkit.h ev_cpp.h ../libev/ev++.h ../libev/ev.h callback.h 168init.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
156init.o: scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h background.h 169init.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
157init.o: rsinc.h optinc.h init.h keyboard.h 170init.o: hookinc.h rsinc.h optinc.h init.h keyboard.h
158keyboard.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
159keyboard.o: rxvttoolkit.h ev_cpp.h ../libev/ev++.h ../libev/ev.h callback.h 173keyboard.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
160keyboard.o: scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h 174keyboard.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
161keyboard.o: background.h rsinc.h optinc.h keyboard.h command.h 175keyboard.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h
162logging.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
163logging.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
164logging.o: ../libev/ev++.h ../libev/ev.h callback.h scrollbar.h salloc.h
165logging.o: rxvtperl.h hookinc.h background.h rsinc.h optinc.h
166main.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
167main.o: rxvttoolkit.h ev_cpp.h ../libev/ev++.h ../libev/ev.h callback.h 178main.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
168main.o: scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h background.h 179main.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
169main.o: rsinc.h optinc.h keyboard.h 180main.o: hookinc.h rsinc.h optinc.h init.h keyboard.h
170misc.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
171misc.o: rxvttoolkit.h ev_cpp.h ../libev/ev++.h ../libev/ev.h callback.h 183misc.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
172misc.o: scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h background.h 184misc.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
173misc.o: rsinc.h optinc.h 185misc.o: hookinc.h rsinc.h optinc.h
174proxy.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
175proxy.o: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h 187ptytty_wrapper.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
176proxy.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
177proxy.o: rxvtperl.h hookinc.h background.h rsinc.h optinc.h 189ptytty_wrapper.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
178ptytty.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
179ptytty.o: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h 191ptytty_wrapper.o: optinc.h ../libptytty/src/logging.C
180ptytty.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
181ptytty.o: rxvtperl.h hookinc.h background.h rsinc.h optinc.h 193ptytty_wrapper.o: ../libptytty/src/proxy.C ../libptytty/src/ptytty.C
182rxvt.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
183rxvt.o: rxvttoolkit.h ev_cpp.h ../libev/ev++.h ../libev/ev.h callback.h 196rxvt.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
184rxvt.o: scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h background.h 197rxvt.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
185rxvt.o: rsinc.h optinc.h 198rxvt.o: hookinc.h rsinc.h optinc.h
186rxvtc.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
187rxvtc.o: encoding.h rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h 200rxvtc.o: ../libptytty/src/estl.h emman.h ../libptytty/src/libptytty.h
188rxvtc.o: ../libev/ev.h callback.h scrollbar.h salloc.h rxvtperl.h hookinc.h 201rxvtd.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
189rxvtc.o: background.h rsinc.h optinc.h 202rxvtd.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
190rxvtd.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
191rxvtd.o: rxvttoolkit.h ev_cpp.h ../libev/ev++.h ../libev/ev.h callback.h 203rxvtd.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
192rxvtd.o: scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h background.h 204rxvtd.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
193rxvtd.o: rsinc.h optinc.h rxvtdaemon.h 205rxvtd.o: hookinc.h rsinc.h optinc.h rxvtdaemon.h
194rxvtdaemon.o: rxvtdaemon.h rxvtutil.h 206rxvtdaemon.o: rxvtdaemon.h rxvtutil.h ../libptytty/src/ecb.h
195rxvtfont.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h 207rxvtdaemon.o: ../libptytty/src/estl.h emman.h
196rxvtfont.o: rxvttoolkit.h ev_cpp.h ../libev/ev++.h ../libev/ev.h callback.h 208rxvtfont.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
197rxvtfont.o: scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h 209rxvtfont.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
198rxvtfont.o: background.h rsinc.h optinc.h table/linedraw.h
199rxvtperl.o: ../config.h ev_cpp.h ../libev/ev++.h ../libev/ev.h rxvt.h
200rxvtperl.o: feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
201rxvtperl.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h
202rxvtperl.o: background.h rsinc.h optinc.h keyboard.h perlxsi.c iom_perl.h
203rxvttoolkit.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.h rxvtfont.h
204rxvttoolkit.o: rxvttoolkit.h ev_cpp.h ../libev/ev++.h ../libev/ev.h 210rxvtfont.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
205rxvttoolkit.o: callback.h scrollbar.h salloc.h libptytty.h rxvtperl.h 211rxvtfont.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
206rxvttoolkit.o: hookinc.h background.h rsinc.h optinc.h 212rxvtfont.o: rxvtperl.h hookinc.h rsinc.h optinc.h table/linedraw.h
207rxvtutil.o: rxvtutil.h 213rxvtimg.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
208salloc.o: salloc.h 214rxvtimg.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
209screen.o: ../config.h rxvt.h feature.h encoding.h rxvtutil.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
218rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
219rxvtperl.o: rxvt.h feature.h ../libptytty/src/ecb.h encoding.h rxvtutil.h
220rxvtperl.o: ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
221rxvtperl.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.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
226rxvttoolkit.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
227rxvttoolkit.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
228rxvttoolkit.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
229rxvttoolkit.o: optinc.h
230rxvtutil.o: rxvtutil.h ../libptytty/src/ecb.h ../libptytty/src/estl.h emman.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
210screen.o: rxvttoolkit.h ev_cpp.h ../libev/ev++.h ../libev/ev.h callback.h 234screen.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
211screen.o: scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h background.h 235screen.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
212screen.o: rsinc.h optinc.h salloc.C 236screen.o: hookinc.h rsinc.h optinc.h
213scrollbar-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
214scrollbar-next.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h 239scrollbar-next.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
215scrollbar-next.o: ../libev/ev.h callback.h scrollbar.h salloc.h libptytty.h 240scrollbar-next.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
241scrollbar-next.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
216scrollbar-next.o: rxvtperl.h hookinc.h background.h 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 ../libev/ev++.h 245scrollbar-plain.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
219scrollbar-plain.o: ../libev/ev.h callback.h scrollbar.h salloc.h libptytty.h 246scrollbar-plain.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
247scrollbar-plain.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
220scrollbar-plain.o: rxvtperl.h hookinc.h background.h rsinc.h optinc.h 248scrollbar-plain.o: hookinc.h rsinc.h optinc.h
221scrollbar-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
222scrollbar-rxvt.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h 251scrollbar-rxvt.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
223scrollbar-rxvt.o: ../libev/ev.h callback.h scrollbar.h salloc.h libptytty.h 252scrollbar-rxvt.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
253scrollbar-rxvt.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
224scrollbar-rxvt.o: rxvtperl.h hookinc.h background.h rsinc.h optinc.h 254scrollbar-rxvt.o: hookinc.h rsinc.h optinc.h
225scrollbar-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
226scrollbar-xterm.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h 257scrollbar-xterm.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
227scrollbar-xterm.o: ../libev/ev.h callback.h scrollbar.h salloc.h libptytty.h 258scrollbar-xterm.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
259scrollbar-xterm.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
228scrollbar-xterm.o: rxvtperl.h hookinc.h background.h rsinc.h optinc.h 260scrollbar-xterm.o: hookinc.h rsinc.h optinc.h
229scrollbar.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
230scrollbar.o: rxvttoolkit.h ev_cpp.h ../libev/ev++.h ../libev/ev.h callback.h 263scrollbar.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
231scrollbar.o: scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h 264scrollbar.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
232scrollbar.o: background.h rsinc.h optinc.h 265scrollbar.o: rxvtperl.h hookinc.h rsinc.h optinc.h
233xdefaults.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
234xdefaults.o: rxvttoolkit.h ev_cpp.h ../libev/ev++.h ../libev/ev.h callback.h 268xdefaults.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
235xdefaults.o: scrollbar.h salloc.h libptytty.h rxvtperl.h hookinc.h 269xdefaults.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
236xdefaults.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