ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.54
Committed: Sat Jan 21 19:02:56 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.53: +1 -7 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 ayin 1.53 tags: *.[Ch]
108     ctags $^
109    
110     TAGS: *.[Ch]
111     etags $^
112 pcg 1.1
113 root 1.17 allbin: rxvt rxvtd rxvtc
114 pcg 1.1
115     alldoc:
116    
117     clean:
118 root 1.40 $(RMF) rxvt rxvtc rxvtd perlxsi.c rxvtperl.C
119     $(RMF) *.o *.lo .libs/* librxvt.la tmpproto *.tmp
120 pcg 1.1
121     realclean: clean
122 ayin 1.53 $(RMF) tags TAGS librxvt.h
123 pcg 1.1
124     cleandir: realclean
125    
126     distclean: realclean
127     (cd $(srcdir); $(RMF) Makefile)
128    
129 root 1.31 install-perl:
130 root 1.32 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)
131     @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
132 root 1.36 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl
133 root 1.31 @IF_PERL@ $(INSTALL_DATA) urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
134 root 1.38 @IF_PERL@ for ext in perl/*; do test -f "$$ext" && $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/"$$ext"; done
135 root 1.31
136     install: allbin alldoc install-perl
137 root 1.32 $(INSTALL) -d $(DESTDIR)$(bindir)
138 root 1.26 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
139     $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
140     $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
141 pcg 1.1
142 root 1.30 perlxsi.c: Makefile
143     $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
144    
145     rxvtperl.C: rxvtperl.xs typemap
146 root 1.54 $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap -prototypes rxvtperl.xs >$@
147 root 1.30
148     rxvtperl.o: rxvtperl.C perlxsi.c
149     $(COMPILE) @PERLFLAGS@ -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
150    
151 root 1.23 depend:
152     makedepend -f Makefile.in -I. -Y *.C >/dev/null 2>&1
153     makedepend -f Makefile.in -I. -Y *.C -a -o .lo >/dev/null 2>&1
154    
155 pcg 1.1 # DO NOT DELETE: nice dependency list follows
156    
157 root 1.51 command.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
158     command.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
159     command.o: salloc.h rxvtperl.h hookinc.h rsinc.h version.h command.h
160     command.o: keyboard.h
161 root 1.23 encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
162     encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
163     encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
164     encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
165     encoding.o: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
166     encoding.o: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
167     encoding.o: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
168     encoding.o: table/gb2312_1980_0.h table/cns11643_1992_1.h
169     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.51 fdpass.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
177 root 1.42 fdpass.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
178 root 1.44 fdpass.o: salloc.h rxvtperl.h hookinc.h rsinc.h fdpass.h
179 root 1.51 init.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
180     init.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
181     init.o: rxvtperl.h hookinc.h rsinc.h init.h
182 root 1.23 iom.o: iom.h iom_conf.h rxvtutil.h callback.h
183 root 1.51 keyboard.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
184     keyboard.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
185     keyboard.o: salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h command.h
186     logging.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
187     logging.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
188     logging.o: salloc.h rxvtperl.h hookinc.h rsinc.h ptytty.h
189     main.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
190     main.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
191     main.o: rxvtperl.h hookinc.h rsinc.h keyboard.h
192     misc.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
193     misc.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
194     misc.o: rxvtperl.h hookinc.h rsinc.h
195     netdisp.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
196     netdisp.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
197     netdisp.o: salloc.h rxvtperl.h hookinc.h rsinc.h
198     ptytty.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
199 root 1.23 ptytty.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
200 root 1.51 ptytty.o: salloc.h rxvtperl.h hookinc.h rsinc.h fdpass.h ptytty.h
201     rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
202     rxvt.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
203     rxvt.o: rxvtperl.h hookinc.h rsinc.h
204 root 1.29 rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h fdpass.h rxvt.h rxvtlib.h
205 root 1.51 rxvtc.o: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
206     rxvtc.o: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
207     rxvtd.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
208 root 1.23 rxvtd.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
209 root 1.44 rxvtd.o: salloc.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h fdpass.h
210 root 1.23 rxvtdaemon.o: rxvtdaemon.h rxvtutil.h
211 root 1.51 rxvtfont.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
212     rxvtfont.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
213     rxvtfont.o: salloc.h rxvtperl.h hookinc.h rsinc.h table/linedraw.h
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     rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
302     rxvttoolkit.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
303     rxvttoolkit.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
304 root 1.23 rxvtutil.lo: rxvtutil.h
305     salloc.lo: salloc.h
306 root 1.51 screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
307     screen.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
308     screen.lo: salloc.h rxvtperl.h hookinc.h rsinc.h salloc.C
309     scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
310     scrollbar-next.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
311     scrollbar-next.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
312     scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
313 root 1.23 scrollbar-plain.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
314 root 1.39 scrollbar-plain.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h
315 root 1.44 scrollbar-plain.lo: rsinc.h
316 root 1.51 scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
317     scrollbar-rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
318     scrollbar-rxvt.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
319     scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
320 root 1.23 scrollbar-xterm.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
321 root 1.39 scrollbar-xterm.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h
322 root 1.44 scrollbar-xterm.lo: rsinc.h
323 root 1.51 scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
324     scrollbar.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
325     scrollbar.lo: salloc.h rxvtperl.h hookinc.h rsinc.h
326     xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
327     xdefaults.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
328     xdefaults.lo: salloc.h rxvtperl.h hookinc.h rsinc.h version.h keyboard.h
329     xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
330     xpm.lo: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
331     xpm.lo: rxvtperl.h hookinc.h rsinc.h