ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.52
Committed: Wed Jan 18 08:33:34 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.51: +1 -13 lines
Log Message:
*** empty log message ***

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