ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.50
Committed: Tue Jan 17 10:14:26 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.49: +2 -2 lines
Log Message:
*** empty log message ***

File Contents

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