ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.184
Committed: Mon Jul 8 02:59:51 2019 UTC (4 years, 10 months ago) by root
Branch: MAIN
Changes since 1.183: +5 -6 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.170 DATE = @DATE@
2     VERSION = @VERSION@
3     RXVTNAME = @RXVTNAME@
4 ayin 1.48 SHELL = /bin/sh
5 sf-exg 1.156 prefix = @prefix@
6     exec_prefix = @exec_prefix@
7 ayin 1.48 bindir = @bindir@
8     libdir = @libdir@
9 root 1.170 man1dir = @mandir@/man1
10     man1ext = 1
11 root 1.171 man3dir = @mandir@/man3
12     man3ext = 3
13 root 1.172 PODOPTS = quotes => q<"> , center => q<RXVT-UNICODE>, release => q<$(VERSION)>
14 ayin 1.48 CXX = @CXX@
15     PERL = @PERL@
16     INSTALL = @INSTALL@
17     INSTALL_PROGRAM = @INSTALL@ -m 755
18     INSTALL_DATA = @INSTALL@ -m 644
19 ayin 1.91 CXXFLAGS = @CXXFLAGS@
20 ayin 1.102 CPPFLAGS = @CPPFLAGS@
21 ayin 1.48 LDFLAGS = @LDFLAGS@
22     DEFS = @DEFS@
23     LIBS = @LIBS@
24 sf-exg 1.159 XINC = @X_CFLAGS@ @PIXBUF_CFLAGS@ @STARTUP_NOTIFICATION_CFLAGS@
25     XLIB = @X_LIBS@ -lX11 @X_EXTRA_LIBS@ @PIXBUF_LIBS@ @STARTUP_NOTIFICATION_LIBS@
26 root 1.162 COMPILE = $(CXX) -I.. -I$(srcdir) -I. -I$(srcdir)/../libev -I$(srcdir)/../libptytty/src $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(XINC)
27 ayin 1.48 LINK = @LINKER@ $(LDFLAGS)
28 sf-exg 1.134 EXEEXT = @EXEEXT@
29 sf-exg 1.136 PERLFLAGS = @PERLFLAGS@
30     PERLLIB = @PERLLIB@
31 ayin 1.48
32 root 1.171 srcdir = @srcdir@
33     VPATH = @srcdir@
34 pcg 1.1
35     first_rule: all
36     dummy:
37    
38 root 1.26 COMMON = \
39 sf-exg 1.183 command.o rxvtfont.o init.o main.o misc.o \
40 sf-exg 1.144 screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \
41 ayin 1.108 scrollbar-xterm.o scrollbar-plain.o xdefaults.o encoding.o \
42 root 1.165 rxvttoolkit.o rxvtutil.o keyboard.o rxvtimg.o \
43 sf-exg 1.146 ev_cpp.o fdpass_wrapper.o ptytty_wrapper.o @PERL_O@
44 pcg 1.1
45 root 1.51 COMMON_DAEMON = rxvtdaemon.o
46 root 1.28
47 sf-exg 1.135 RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)$(EXEEXT)
48     RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)c$(EXEEXT)
49     RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)d$(EXEEXT)
50 pcg 1.1
51     #
52     # Distribution variables
53     #
54    
55 root 1.87 .SUFFIXES: .C .c .o
56 pcg 1.1
57     #-------------------------------------------------------------------------
58     # inference rules
59     .C.o:
60     $(COMPILE) -c $<
61    
62     #-------------------------------------------------------------------------
63 pcg 1.13
64 pcg 1.1 all: allbin
65    
66 root 1.26 rxvt: rxvt.o $(COMMON)
67 sf-exg 1.136 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) $(PERLLIB)
68 root 1.26
69 root 1.28 rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON)
70 sf-exg 1.136 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) $(PERLLIB)
71 root 1.26
72 sf-exg 1.146 rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o
73     $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o $(LIBS)
74 pcg 1.13
75 pcg 1.1 #-------------------------------------------------------------------------
76 pcg 1.13
77 sf-exg 1.150 #EXUBERANT_OPTS = -I NOTHROW -I THROW
78 ayin 1.106
79 ayin 1.53 tags: *.[Ch]
80 ayin 1.106 ctags $(EXUBERANT_OPTS) *.[Ch]
81 ayin 1.53
82     TAGS: *.[Ch]
83 ayin 1.106 etags $(EXUBERANT_OPTS) *.[Ch]
84 pcg 1.1
85 root 1.17 allbin: rxvt rxvtd rxvtc
86 pcg 1.1
87     alldoc:
88    
89     clean:
90 root 1.171 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C manlst mantmp
91 ayin 1.129 rm -f *.o
92 pcg 1.1
93 ayin 1.93 distclean: clean
94 ayin 1.126 rm -f Makefile
95 ayin 1.93
96     realclean: distclean
97 ayin 1.92 rm -f tags TAGS
98 pcg 1.1
99     cleandir: realclean
100    
101 root 1.31 install-perl:
102 root 1.32 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)
103     @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
104 root 1.36 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl
105 root 1.171 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man1dir)
106     @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man3dir)
107 ayin 1.82 @IF_PERL@ $(INSTALL_DATA) $(srcdir)/urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
108 root 1.175 @IF_PERL@ for ext in $(srcdir)/perl/*; do \
109 root 1.170 @IF_PERL@ test -f "$$ext" || continue; \
110 sf-exg 1.181 @IF_PERL@ base=`basename "$$ext"`; \
111 root 1.170 @IF_PERL@ $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/; \
112     @IF_PERL@ < "$$ext" \
113 root 1.175 @IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "'urxvt-$$base'", $(PODOPTS))->parse_from_file' \
114 sf-exg 1.179 @IF_PERL@ > mantmp; \
115     @IF_PERL@ test -s mantmp && $(INSTALL_DATA) mantmp $(DESTDIR)$(man1dir)/$(RXVTNAME)-$$base.$(man1ext); \
116 root 1.171 @IF_PERL@ < "$$ext" $(PERL) -ne '<>, (print <> . "\n"), exit if /^=head1/' >&3; \
117 root 1.175 @IF_PERL@ done 3>manlst
118 sf-exg 1.173 @IF_PERL@ cat $(srcdir)/../doc/extensions.pod.top manlst $(srcdir)/../doc/extensions.pod.bot | \
119 root 1.171 @IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "$(RXVTNAME)-extensions", $(PODOPTS))->parse_from_file' \
120     @IF_PERL@ > mantmp
121     @IF_PERL@ $(INSTALL_DATA) mantmp $(DESTDIR)$(man1dir)/$(RXVTNAME)-extensions.$(man1ext)
122 sf-exg 1.173 @IF_PERL@ < $(srcdir)/urxvt.pm \
123 sf-exg 1.176 @IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "$(RXVTNAME)perl", section => 3, $(PODOPTS))->parse_from_file' \
124 root 1.171 @IF_PERL@ > mantmp
125     @IF_PERL@ $(INSTALL_DATA) mantmp $(DESTDIR)$(man3dir)/$(RXVTNAME)perl.$(man3ext)
126 root 1.31
127 ayin 1.88 install-bin: allbin
128 root 1.32 $(INSTALL) -d $(DESTDIR)$(bindir)
129 root 1.26 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
130     $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
131     $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
132 pcg 1.1
133 ayin 1.93 install: install-bin install-perl
134 ayin 1.88
135 root 1.30 perlxsi.c: Makefile
136     $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
137    
138 root 1.84 rxvtperl.C: rxvtperl.xs iom_perl.h iom_perl.xs typemap typemap.iom
139 sf-exg 1.180 PERL="$(PERL)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap 'typemap.iom' -typemap 'typemap' -prototypes $(srcdir)/rxvtperl.xs >$@
140 root 1.30
141     rxvtperl.o: rxvtperl.C perlxsi.c
142 sf-exg 1.136 $(COMPILE) $(PERLFLAGS) -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
143 root 1.30
144 root 1.23 depend:
145 root 1.167 makedepend -f Makefile.in -I. -I.. -I../libptytty/src -I../libev -Y *.C *.xs >/dev/null 2>&1
146 root 1.23
147 root 1.184 # makedepend has trouble finding these
148     ev_cpp.o: ../libev/ev.c ../libev/ev_epoll.c ../libev/ev_kqueue.c ../libev/ev_linuxaio.c
149     ev_cpp.o: ../libev/ev_poll.c ../libev/ev_port.c ../libev/ev_select.c ../libev/ev_win32.c
150    
151    
152 pcg 1.1 # DO NOT DELETE: nice dependency list follows
153    
154 root 1.164 command.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
155 root 1.169 command.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
156     command.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
157     command.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
158     command.o: rxvtperl.h hookinc.h rsinc.h optinc.h version.h command.h
159     command.o: keyboard.h
160 root 1.163 encoding.o: ../config.h encoding.h rxvtutil.h ../libptytty/src/ecb.h
161 root 1.169 encoding.o: ../libptytty/src/estl.h emman.h table/iso8859_1.h
162     encoding.o: table/iso8859_15.h table/iso8859_2.h table/iso8859_3.h
163     encoding.o: table/iso8859_4.h table/iso8859_5.h table/iso8859_6.h
164     encoding.o: table/iso8859_7.h table/iso8859_8.h table/iso8859_9.h
165     encoding.o: table/iso8859_10.h table/iso8859_11.h table/iso8859_13.h
166     encoding.o: table/iso8859_14.h table/iso8859_16.h table/koi8_r.h
167     encoding.o: table/koi8_u.h table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
168 root 1.160 encoding.o: table/gb2312_1980_0.h table/cns11643_1992_1.h
169 root 1.23 encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h
170     encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h
171     encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
172     encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
173     encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
174     encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
175     encoding.o: table/compose.h table/category.h
176 root 1.131 ev_cpp.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h ../libev/ev.c
177 root 1.178 ev_cpp.o: ../libev/ev_vars.h ../libev/ev_epoll.c ../libev/ev_select.c
178 sf-exg 1.147 fdpass_wrapper.o: ../libptytty/src/fdpass.C ../config.h
179     fdpass_wrapper.o: ../libptytty/src/libptytty.h
180 root 1.164 init.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
181 root 1.169 init.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
182     init.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
183     init.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
184     init.o: hookinc.h rsinc.h optinc.h init.h keyboard.h
185 root 1.164 keyboard.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
186 root 1.169 keyboard.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
187     keyboard.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
188     keyboard.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
189     keyboard.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h
190 root 1.164 main.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
191 root 1.169 main.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
192     main.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
193     main.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
194     main.o: hookinc.h rsinc.h optinc.h init.h keyboard.h
195 root 1.164 misc.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
196 root 1.169 misc.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
197     misc.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
198     misc.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
199     misc.o: hookinc.h rsinc.h optinc.h
200 root 1.164 ptytty_wrapper.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
201 root 1.169 ptytty_wrapper.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
202     ptytty_wrapper.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h
203     ptytty_wrapper.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
204 root 1.168 ptytty_wrapper.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
205     ptytty_wrapper.o: optinc.h ../libptytty/src/logging.C
206     ptytty_wrapper.o: ../libptytty/src/ptytty.h ../libptytty/src/ptytty_conf.h
207     ptytty_wrapper.o: ../libptytty/src/proxy.C ../libptytty/src/ptytty.C
208 root 1.164 rxvt.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
209 root 1.169 rxvt.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
210     rxvt.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
211     rxvt.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
212     rxvt.o: hookinc.h rsinc.h optinc.h
213 root 1.163 rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h ../libptytty/src/ecb.h
214 root 1.169 rxvtc.o: ../libptytty/src/estl.h emman.h ../libptytty/src/libptytty.h
215 root 1.164 rxvtd.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
216 root 1.169 rxvtd.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
217     rxvtd.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
218     rxvtd.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
219     rxvtd.o: hookinc.h rsinc.h optinc.h rxvtdaemon.h
220 root 1.163 rxvtdaemon.o: rxvtdaemon.h rxvtutil.h ../libptytty/src/ecb.h
221 root 1.169 rxvtdaemon.o: ../libptytty/src/estl.h emman.h
222 root 1.164 rxvtfont.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
223 root 1.169 rxvtfont.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
224     rxvtfont.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
225     rxvtfont.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
226     rxvtfont.o: rxvtperl.h hookinc.h rsinc.h optinc.h table/linedraw.h
227 root 1.166 rxvtimg.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
228 root 1.169 rxvtimg.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
229     rxvtimg.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
230     rxvtimg.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
231     rxvtimg.o: rxvtperl.h hookinc.h rsinc.h optinc.h
232 root 1.168 rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
233     rxvtperl.o: rxvt.h feature.h ../libptytty/src/ecb.h encoding.h rxvtutil.h
234 root 1.169 rxvtperl.o: ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
235     rxvtperl.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
236     rxvtperl.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h perlxsi.c
237     rxvtperl.o: iom_perl.h
238 root 1.164 rxvttoolkit.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
239 root 1.169 rxvttoolkit.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
240     rxvttoolkit.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h
241     rxvttoolkit.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h
242     rxvttoolkit.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h
243     rxvttoolkit.o: optinc.h
244 root 1.182 rxvtutil.o: emman.c emman.h ../libptytty/src/ecb.h rxvtutil.h
245     rxvtutil.o: ../libptytty/src/estl.h
246 root 1.164 screen.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
247 root 1.169 screen.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
248 root 1.164 screen.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h
249 root 1.168 screen.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
250     screen.o: hookinc.h rsinc.h optinc.h
251 root 1.164 scrollbar-next.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
252 root 1.169 scrollbar-next.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
253     scrollbar-next.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
254     scrollbar-next.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
255     scrollbar-next.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
256     scrollbar-next.o: hookinc.h rsinc.h optinc.h
257 root 1.164 scrollbar-plain.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
258 root 1.169 scrollbar-plain.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
259     scrollbar-plain.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
260     scrollbar-plain.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
261     scrollbar-plain.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
262     scrollbar-plain.o: hookinc.h rsinc.h optinc.h
263 root 1.164 scrollbar-rxvt.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
264 root 1.169 scrollbar-rxvt.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
265     scrollbar-rxvt.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
266     scrollbar-rxvt.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
267     scrollbar-rxvt.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
268     scrollbar-rxvt.o: hookinc.h rsinc.h optinc.h
269 root 1.164 scrollbar-xterm.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h
270 root 1.169 scrollbar-xterm.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h
271     scrollbar-xterm.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h
272     scrollbar-xterm.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h
273     scrollbar-xterm.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h
274     scrollbar-xterm.o: hookinc.h rsinc.h optinc.h
275 root 1.164 scrollbar.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
276 root 1.169 scrollbar.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
277     scrollbar.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
278     scrollbar.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
279     scrollbar.o: rxvtperl.h hookinc.h rsinc.h optinc.h
280 root 1.164 xdefaults.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h
281 root 1.169 xdefaults.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h
282     xdefaults.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
283     xdefaults.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
284     xdefaults.o: rxvtperl.h hookinc.h rsinc.h optinc.h version.h keyboard.h
285 root 1.167 rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h
286     rxvtperl.o: rxvt.h feature.h ../libptytty/src/ecb.h encoding.h rxvtutil.h
287 root 1.169 rxvtperl.o: ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h
288     rxvtperl.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h
289     rxvtperl.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h perlxsi.c
290     rxvtperl.o: iom_perl.h