ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.114
Committed: Mon Nov 19 11:39:17 2007 UTC (16 years, 6 months ago) by ayin
Branch: MAIN
Changes since 1.113: +1 -1 lines
Log Message:
Remove useless include path.

File Contents

# User Rev Content
1 ayin 1.48 DATE=@DATE@
2     VERSION=@VERSION@
3     RXVTNAME=@RXVTNAME@
4     SHELL = /bin/sh
5     prefix = @prefix@
6     exec_prefix = @exec_prefix@
7     bindir = @bindir@
8     libdir = @libdir@
9     includedir = @includedir@
10     CC = @CC@
11     CXX = @CXX@
12     CPP = @CPP@
13     PERL = @PERL@
14     INSTALL = @INSTALL@
15     INSTALL_PROGRAM = @INSTALL@ -m 755
16     INSTALL_DATA = @INSTALL@ -m 644
17 ayin 1.91 CXXFLAGS = @CXXFLAGS@
18 ayin 1.102 CPPFLAGS = @CPPFLAGS@
19 ayin 1.48 LDFLAGS = @LDFLAGS@
20     DEFS = @DEFS@
21     LIBS = @LIBS@
22 ayin 1.102 XINC = @X_CFLAGS@ @AFTERIMAGE_CFLAGS@
23     XLIB = @X_LIBS@ @AFTERIMAGE_LIBS@ -lX11 @X_EXTRA_LIBS@
24 ayin 1.114 COMPILE = $(CXX) -I$(srcdir)/../libev -I.. -I$(srcdir) -I. $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(DEBUG) $(XINC)
25 ayin 1.48 LINK = @LINKER@ $(LDFLAGS)
26    
27 pcg 1.1 srcdir = @srcdir@
28     VPATH = @srcdir@
29    
30 root 1.60 DEBUG=-DDEBUG_STRICT
31 pcg 1.1
32     first_rule: all
33     dummy:
34    
35 root 1.26 COMMON = \
36 ayin 1.105 background.o command.o rxvtfont.o init.o logging.o main.o misc.o \
37 root 1.61 ptytty.o proxy.o screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \
38 ayin 1.108 scrollbar-xterm.o scrollbar-plain.o xdefaults.o encoding.o \
39 root 1.112 rxvttoolkit.o rxvtutil.o keyboard.o \
40     fdpass.o ev_cpp.o @PERL_O@
41 pcg 1.1
42 root 1.51 COMMON_DAEMON = rxvtdaemon.o
43 root 1.28
44 ayin 1.99 RXVT_BASENAME=`echo $(RXVTNAME)|sed 's/$(EXEEXT)$$//'|sed '$(transform)'`
45 pcg 1.1 RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)$(EXEEXT)
46 pcg 1.5 RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)c$(EXEEXT)
47     RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)d$(EXEEXT)
48 pcg 1.1
49     #
50     # Distribution variables
51     #
52    
53 root 1.87 .SUFFIXES: .C .c .o
54 pcg 1.1
55     #-------------------------------------------------------------------------
56     # inference rules
57     .C.o:
58     $(COMPILE) -c $<
59    
60 root 1.26 #.C.lo:
61     # $(LIBTOOL) --mode=compile $(COMPILE) -c $<
62     #
63     #.s.lo:
64     # $(LIBTOOL) --mode=compile $(COMPILE) -c $<
65     #
66     #.S.lo:
67     # $(LIBTOOL) --mode=compile $(COMPILE) -c $<
68 pcg 1.1
69     #-------------------------------------------------------------------------
70 pcg 1.13
71 pcg 1.1 all: allbin
72    
73 root 1.26 rxvt: rxvt.o $(COMMON)
74 ayin 1.95 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) @PERLLIB@
75     # $(LIBTOOL) --mode=link $(LINK) rxvt.o librxvt.la $(LIBS) $(XLIB) -o $@
76 root 1.26
77 root 1.28 rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON)
78 ayin 1.95 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) @PERLLIB@
79     # $(LIBTOOL) --mode=link $(LINK) rxvtd.o rxvtdaemon.o librxvt.la $(LIBS) $(XLIB) -o $@
80 root 1.26
81 root 1.112 rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass.o ev_cpp.o
82 root 1.113 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass.o ev_cpp.o $(LIBS)
83 ayin 1.100 # $(LIBTOOL) --mode=link $(LINK) rxvtc.o rxvtdaemon.o $(LIBS) -o $@
84 pcg 1.1
85 root 1.26 #librxvt.la: $(LIBOBJS)
86     # $(LIBTOOL) --mode=link $(LINK) -rpath $(libdir) -version-info $(LIBVERSION) $(LIBOBJS) $(LIBS) -o $@
87 pcg 1.13
88 pcg 1.1 #-------------------------------------------------------------------------
89 pcg 1.13
90 ayin 1.106 #EXUBERANT_OPTS = -I NOTHROW
91    
92 ayin 1.53 tags: *.[Ch]
93 ayin 1.106 ctags $(EXUBERANT_OPTS) *.[Ch]
94 ayin 1.53
95     TAGS: *.[Ch]
96 ayin 1.106 etags $(EXUBERANT_OPTS) *.[Ch]
97 pcg 1.1
98 root 1.17 allbin: rxvt rxvtd rxvtc
99 pcg 1.1
100     alldoc:
101    
102     clean:
103 ayin 1.59 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C
104     rm -f *.o *.lo .libs/* librxvt.la tmpproto *.tmp
105 pcg 1.1
106 ayin 1.93 distclean: clean
107     rm -f Makefile rxvtlib.h
108    
109     realclean: distclean
110 ayin 1.92 rm -f tags TAGS
111 pcg 1.1
112     cleandir: realclean
113    
114 root 1.31 install-perl:
115 root 1.32 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)
116     @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
117 root 1.36 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl
118 ayin 1.82 @IF_PERL@ $(INSTALL_DATA) $(srcdir)/urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
119 ayin 1.81 @IF_PERL@ for ext in $(srcdir)/perl/*; do test -f "$$ext" && $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/"`basename "$$ext"`"; done
120 root 1.31
121 ayin 1.88 install-bin: allbin
122 root 1.32 $(INSTALL) -d $(DESTDIR)$(bindir)
123 root 1.26 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
124     $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
125     $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
126 pcg 1.1
127 ayin 1.93 install: install-bin install-perl
128 ayin 1.88
129 root 1.30 perlxsi.c: Makefile
130     $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
131    
132 root 1.84 rxvtperl.C: rxvtperl.xs iom_perl.h iom_perl.xs typemap typemap.iom
133     PERL="$(PERL)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap.iom -typemap typemap -prototypes $(srcdir)/rxvtperl.xs >$@
134 root 1.30
135     rxvtperl.o: rxvtperl.C perlxsi.c
136     $(COMPILE) @PERLFLAGS@ -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
137    
138 root 1.23 depend:
139 root 1.80 makedepend -f Makefile.in -I. -Y *.C >/dev/null 2>&1
140 root 1.23 makedepend -f Makefile.in -I. -Y *.C -a -o .lo >/dev/null 2>&1
141    
142 pcg 1.1 # DO NOT DELETE: nice dependency list follows
143    
144 root 1.107 background.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
145 root 1.109 background.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h
146     background.o: salloc.h libptytty.h rxvtperl.h hookinc.h background.h rsinc.h
147 root 1.51 command.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
148 root 1.109 command.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
149     command.o: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h version.h
150     command.o: command.h keyboard.h
151 root 1.23 encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
152     encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
153     encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
154     encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
155     encoding.o: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
156     encoding.o: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
157     encoding.o: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
158     encoding.o: table/gb2312_1980_0.h table/cns11643_1992_1.h
159     encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h
160     encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h
161     encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
162     encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
163     encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
164     encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
165     encoding.o: table/compose.h table/category.h
166 root 1.109 ev_cpp.o: rxvttoolkit.h ev_cpp.h rxvtlib.h optinc.h rxvtutil.h callback.h
167 root 1.56 fdpass.o: ../config.h libptytty.h
168 root 1.63 init.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
169 root 1.109 init.o: rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h libptytty.h
170     init.o: rxvtperl.h hookinc.h background.h rsinc.h init.h
171 root 1.51 keyboard.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
172 root 1.109 keyboard.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
173     keyboard.o: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h keyboard.h
174     keyboard.o: command.h
175 root 1.58 logging.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
176 root 1.63 logging.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
177 root 1.109 logging.o: ev_cpp.h callback.h salloc.h rxvtperl.h hookinc.h background.h
178     logging.o: rsinc.h
179 root 1.63 main.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
180 root 1.109 main.o: rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h libptytty.h
181     main.o: rxvtperl.h hookinc.h background.h rsinc.h keyboard.h
182 root 1.63 misc.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
183 root 1.109 misc.o: rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h libptytty.h
184     misc.o: rxvtperl.h hookinc.h background.h rsinc.h
185 root 1.62 proxy.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
186 root 1.63 proxy.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
187 root 1.109 proxy.o: ev_cpp.h callback.h salloc.h rxvtperl.h hookinc.h background.h
188     proxy.o: rsinc.h
189 root 1.58 ptytty.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
190 root 1.63 ptytty.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
191 root 1.109 ptytty.o: ev_cpp.h callback.h salloc.h rxvtperl.h hookinc.h background.h
192     ptytty.o: rsinc.h
193 root 1.63 rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
194 root 1.109 rxvt.o: rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h libptytty.h
195     rxvt.o: rxvtperl.h hookinc.h background.h rsinc.h
196 root 1.58 rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
197 root 1.109 rxvtc.o: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h ev_cpp.h
198     rxvtc.o: callback.h salloc.h rxvtperl.h hookinc.h background.h rsinc.h
199 root 1.51 rxvtd.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
200 root 1.109 rxvtd.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
201     rxvtd.o: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h rxvtdaemon.h
202 root 1.23 rxvtdaemon.o: rxvtdaemon.h rxvtutil.h
203 root 1.51 rxvtfont.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
204 root 1.109 rxvtfont.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
205     rxvtfont.o: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h
206 root 1.107 rxvtfont.o: table/linedraw.h
207 root 1.109 rxvtperl.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
208     rxvtperl.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
209     rxvtperl.o: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h keyboard.h
210     rxvtperl.o: perlxsi.c ./iom_perl.h
211 root 1.51 rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
212 root 1.109 rxvttoolkit.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h
213     rxvttoolkit.o: salloc.h libptytty.h rxvtperl.h hookinc.h background.h rsinc.h
214 root 1.23 rxvtutil.o: rxvtutil.h
215     salloc.o: salloc.h
216 root 1.51 screen.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
217 root 1.109 screen.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
218     screen.o: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h salloc.C
219 root 1.51 scrollbar-next.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
220 root 1.109 scrollbar-next.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h
221     scrollbar-next.o: salloc.h libptytty.h rxvtperl.h hookinc.h background.h
222     scrollbar-next.o: rsinc.h
223 root 1.51 scrollbar-plain.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
224 root 1.109 scrollbar-plain.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h
225     scrollbar-plain.o: salloc.h libptytty.h rxvtperl.h hookinc.h background.h
226     scrollbar-plain.o: rsinc.h
227 root 1.51 scrollbar-rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
228 root 1.109 scrollbar-rxvt.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h
229     scrollbar-rxvt.o: salloc.h libptytty.h rxvtperl.h hookinc.h background.h
230     scrollbar-rxvt.o: rsinc.h
231 root 1.51 scrollbar-xterm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
232 root 1.109 scrollbar-xterm.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h
233     scrollbar-xterm.o: salloc.h libptytty.h rxvtperl.h hookinc.h background.h
234     scrollbar-xterm.o: rsinc.h
235 root 1.51 scrollbar.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
236 root 1.109 scrollbar.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
237     scrollbar.o: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h
238 root 1.51 xdefaults.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
239 root 1.109 xdefaults.o: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
240     xdefaults.o: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h version.h
241     xdefaults.o: keyboard.h
242 root 1.51
243 root 1.107 background.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
244 root 1.109 background.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h
245     background.lo: salloc.h libptytty.h rxvtperl.h hookinc.h background.h rsinc.h
246 root 1.51 command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
247 root 1.109 command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
248     command.lo: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h version.h
249     command.lo: command.h keyboard.h
250 root 1.23 encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
251     encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
252     encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
253     encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
254     encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
255     encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
256     encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
257     encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
258     encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
259     encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
260     encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
261     encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
262     encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
263     encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
264     encoding.lo: table/compose.h table/category.h
265 root 1.109 ev_cpp.lo: rxvttoolkit.h ev_cpp.h rxvtlib.h optinc.h rxvtutil.h callback.h
266 root 1.56 fdpass.lo: ../config.h libptytty.h
267 root 1.51 init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
268 root 1.109 init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
269     init.lo: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h init.h
270 root 1.51 keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
271 root 1.109 keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
272     keyboard.lo: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h keyboard.h
273     keyboard.lo: command.h
274 root 1.58 logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
275 root 1.63 logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
276 root 1.109 logging.lo: ev_cpp.h callback.h salloc.h rxvtperl.h hookinc.h background.h
277     logging.lo: rsinc.h
278 root 1.51 main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
279 root 1.109 main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
280     main.lo: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h keyboard.h
281 root 1.51 misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
282 root 1.109 misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
283     misc.lo: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h
284 root 1.62 proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
285 root 1.63 proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
286 root 1.109 proxy.lo: ev_cpp.h callback.h salloc.h rxvtperl.h hookinc.h background.h
287     proxy.lo: rsinc.h
288 root 1.58 ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
289 root 1.63 ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
290 root 1.109 ptytty.lo: ev_cpp.h callback.h salloc.h rxvtperl.h hookinc.h background.h
291     ptytty.lo: rsinc.h
292 root 1.51 rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
293 root 1.109 rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
294     rxvt.lo: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h
295 root 1.58 rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
296 root 1.109 rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h ev_cpp.h
297     rxvtc.lo: callback.h salloc.h rxvtperl.h hookinc.h background.h rsinc.h
298 root 1.51 rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
299 root 1.109 rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
300     rxvtd.lo: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h rxvtdaemon.h
301 root 1.23 rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
302 root 1.51 rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
303 root 1.109 rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
304     rxvtfont.lo: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h
305 root 1.56 rxvtfont.lo: table/linedraw.h
306 root 1.109 rxvtperl.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
307     rxvtperl.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
308     rxvtperl.lo: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h keyboard.h
309     rxvtperl.lo: perlxsi.c ./iom_perl.h
310 root 1.51 rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
311 root 1.109 rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h
312     rxvttoolkit.lo: salloc.h libptytty.h rxvtperl.h hookinc.h background.h
313     rxvttoolkit.lo: rsinc.h
314 root 1.23 rxvtutil.lo: rxvtutil.h
315     salloc.lo: salloc.h
316 root 1.51 screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
317 root 1.109 screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h salloc.h
318     screen.lo: libptytty.h rxvtperl.h hookinc.h background.h rsinc.h salloc.C
319 root 1.51 scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
320 root 1.109 scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h
321     scrollbar-next.lo: salloc.h libptytty.h rxvtperl.h hookinc.h background.h
322     scrollbar-next.lo: rsinc.h
323 root 1.51 scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
324 root 1.109 scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h
325     scrollbar-plain.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
326     scrollbar-plain.lo: background.h rsinc.h
327 root 1.51 scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
328 root 1.109 scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h
329     scrollbar-rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h background.h
330     scrollbar-rxvt.lo: rsinc.h
331 root 1.51 scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
332 root 1.109 scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h
333     scrollbar-xterm.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
334     scrollbar-xterm.lo: background.h rsinc.h
335 root 1.51 scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
336 root 1.109 scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h
337     scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h background.h rsinc.h
338 root 1.51 xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
339 root 1.109 xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h ev_cpp.h callback.h
340     xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h background.h rsinc.h
341     xdefaults.lo: version.h keyboard.h