ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.57
Committed: Sun Jan 22 10:22:05 2006 UTC (18 years, 4 months ago) by ayin
Branch: MAIN
Changes since 1.56: +2 -2 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.55 $(LINK) -o $@ rxvt.o $(COMMON) $(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.55 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(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.55 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass.o $(LIBS) $(DLIB)
100 root 1.26 # $(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 ayin 1.57 ctags *.[Ch]
109 ayin 1.53
110     TAGS: *.[Ch]
111 ayin 1.57 etags *.[Ch]
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 root 1.56 command.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
160     command.o: command.h 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.56 fdpass.o: ../config.h libptytty.h
177 root 1.51 init.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
178     init.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
179 root 1.56 init.o: libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
180 root 1.23 iom.o: iom.h iom_conf.h rxvtutil.h callback.h
181 root 1.51 keyboard.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
182     keyboard.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
183 root 1.56 keyboard.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
184     keyboard.o: command.h
185     logging.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvtutil.h
186     logging.o: feature.h
187 root 1.51 main.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
188     main.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
189 root 1.56 main.o: libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
190 root 1.51 misc.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
191     misc.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
192 root 1.56 misc.o: libptytty.h rxvtperl.h hookinc.h rsinc.h
193 root 1.51 netdisp.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
194     netdisp.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
195 root 1.56 netdisp.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
196     ptytty.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvtutil.h feature.h
197 root 1.51 rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
198     rxvt.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
199 root 1.56 rxvt.o: libptytty.h rxvtperl.h hookinc.h rsinc.h
200     rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h rxvt.h rxvtlib.h optinc.h
201     rxvtc.o: feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
202     rxvtc.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
203 root 1.51 rxvtd.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
204 root 1.23 rxvtd.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
205 root 1.56 rxvtd.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
206 root 1.23 rxvtdaemon.o: rxvtdaemon.h rxvtutil.h
207 root 1.51 rxvtfont.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
208     rxvtfont.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
209 root 1.56 rxvtfont.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
210     rxvtfont.o: table/linedraw.h
211     rxvtperl.o: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
212     rxvtperl.o: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
213     rxvtperl.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
214     rxvtperl.o: perlxsi.c
215 root 1.51 rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
216     rxvttoolkit.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
217 root 1.56 rxvttoolkit.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
218 root 1.23 rxvtutil.o: rxvtutil.h
219     salloc.o: salloc.h
220 root 1.51 screen.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
221 root 1.23 screen.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
222 root 1.56 screen.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
223 root 1.51 scrollbar-next.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
224     scrollbar-next.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
225 root 1.56 scrollbar-next.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
226     scrollbar-next.o: rsinc.h
227 root 1.51 scrollbar-plain.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
228     scrollbar-plain.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
229 root 1.56 scrollbar-plain.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
230     scrollbar-plain.o: rsinc.h
231 root 1.51 scrollbar-rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
232     scrollbar-rxvt.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
233 root 1.56 scrollbar-rxvt.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
234     scrollbar-rxvt.o: rsinc.h
235 root 1.51 scrollbar-xterm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
236     scrollbar-xterm.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
237 root 1.56 scrollbar-xterm.o: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
238     scrollbar-xterm.o: rsinc.h
239 root 1.51 scrollbar.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
240     scrollbar.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
241 root 1.56 scrollbar.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
242 root 1.51 xdefaults.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
243     xdefaults.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
244 root 1.56 xdefaults.o: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
245     xdefaults.o: keyboard.h
246 root 1.51 xpm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
247     xpm.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
248 root 1.56 xpm.o: libptytty.h rxvtperl.h hookinc.h rsinc.h
249 root 1.51
250     command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
251     command.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
252 root 1.56 command.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
253     command.lo: command.h keyboard.h
254 root 1.23 encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
255     encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
256     encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
257     encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
258     encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
259     encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
260     encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
261     encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
262     encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
263     encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
264     encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
265     encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
266     encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
267     encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
268     encoding.lo: table/compose.h table/category.h
269 root 1.56 fdpass.lo: ../config.h libptytty.h
270 root 1.51 init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
271 root 1.23 init.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
272 root 1.56 init.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h init.h
273 root 1.23 iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
274 root 1.51 keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
275     keyboard.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
276 root 1.56 keyboard.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
277     keyboard.lo: command.h
278     logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvtutil.h
279     logging.lo: feature.h
280 root 1.51 main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
281 root 1.23 main.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
282 root 1.56 main.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
283 root 1.51 misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
284 root 1.23 misc.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
285 root 1.56 misc.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
286 root 1.51 netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
287     netdisp.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
288 root 1.56 netdisp.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
289     ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvtutil.h
290     ptytty.lo: feature.h
291 root 1.51 rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
292 root 1.23 rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
293 root 1.56 rxvt.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
294     rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h rxvt.h rxvtlib.h optinc.h
295     rxvtc.lo: feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
296     rxvtc.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
297 root 1.51 rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
298 root 1.23 rxvtd.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
299 root 1.56 rxvtd.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
300 root 1.23 rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
301 root 1.51 rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
302     rxvtfont.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
303 root 1.56 rxvtfont.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
304     rxvtfont.lo: table/linedraw.h
305     rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
306     rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
307     rxvtperl.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h keyboard.h
308     rxvtperl.lo: perlxsi.c
309 root 1.51 rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
310     rxvttoolkit.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
311 root 1.56 rxvttoolkit.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
312 root 1.23 rxvtutil.lo: rxvtutil.h
313     salloc.lo: salloc.h
314 root 1.51 screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
315     screen.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
316 root 1.56 screen.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h salloc.C
317 root 1.51 scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
318     scrollbar-next.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
319 root 1.56 scrollbar-next.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
320     scrollbar-next.lo: rsinc.h
321 root 1.51 scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
322 root 1.23 scrollbar-plain.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
323 root 1.56 scrollbar-plain.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
324     scrollbar-plain.lo: hookinc.h rsinc.h
325 root 1.51 scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
326     scrollbar-rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
327 root 1.56 scrollbar-rxvt.lo: callback.h salloc.h libptytty.h rxvtperl.h hookinc.h
328     scrollbar-rxvt.lo: rsinc.h
329 root 1.51 scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
330 root 1.23 scrollbar-xterm.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
331 root 1.56 scrollbar-xterm.lo: iom_conf.h callback.h salloc.h libptytty.h rxvtperl.h
332     scrollbar-xterm.lo: hookinc.h rsinc.h
333 root 1.51 scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
334     scrollbar.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
335 root 1.56 scrollbar.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h
336 root 1.51 xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
337     xdefaults.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
338 root 1.56 xdefaults.lo: salloc.h libptytty.h rxvtperl.h hookinc.h rsinc.h version.h
339     xdefaults.lo: keyboard.h
340 root 1.51 xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
341     xpm.lo: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
342 root 1.56 xpm.lo: libptytty.h rxvtperl.h hookinc.h rsinc.h