ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.51
Committed: Tue Jan 17 15:17:39 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.50: +119 -130 lines
Log Message:
logging.C

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 root 1.51 rxvttoolkit.o rxvtutil.o iom.o keyboard.o fdpass.o @PERL_O@
70 pcg 1.1
71 root 1.51 COMMON_DAEMON = rxvtdaemon.o
72 root 1.28
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.51 rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass.o
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.51 command.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
167     command.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
168     command.o: salloc.h rxvtperl.h hookinc.h rsinc.h version.h command.h
169     command.o: 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.51 fdpass.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
186 root 1.42 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.51 init.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
189     init.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
190     init.o: 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.51 keyboard.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
193     keyboard.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
194     keyboard.o: salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h command.h
195     logging.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
196     logging.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
197     logging.o: salloc.h rxvtperl.h hookinc.h rsinc.h ptytty.h
198     main.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
199     main.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
200     main.o: rxvtperl.h hookinc.h rsinc.h keyboard.h
201     misc.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
202     misc.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
203     misc.o: rxvtperl.h hookinc.h rsinc.h
204     netdisp.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
205     netdisp.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
206     netdisp.o: salloc.h rxvtperl.h hookinc.h rsinc.h
207     ptytty.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
208 root 1.23 ptytty.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
209 root 1.51 ptytty.o: salloc.h rxvtperl.h hookinc.h rsinc.h fdpass.h ptytty.h
210     rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
211     rxvt.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
212     rxvt.o: rxvtperl.h hookinc.h rsinc.h
213 root 1.29 rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h fdpass.h rxvt.h rxvtlib.h
214 root 1.51 rxvtc.o: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
215     rxvtc.o: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
216     rxvtd.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
217 root 1.23 rxvtd.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
218 root 1.44 rxvtd.o: salloc.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h fdpass.h
219 root 1.23 rxvtdaemon.o: rxvtdaemon.h rxvtutil.h
220 root 1.51 rxvtfont.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
221     rxvtfont.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
222     rxvtfont.o: salloc.h rxvtperl.h hookinc.h rsinc.h table/linedraw.h
223 root 1.41 rxvtperl.o: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
224 root 1.51 rxvtperl.o: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
225     rxvtperl.o: salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h perlxsi.c
226     rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
227     rxvttoolkit.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
228     rxvttoolkit.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
229 root 1.23 rxvtutil.o: rxvtutil.h
230     salloc.o: salloc.h
231 root 1.51 screen.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
232 root 1.23 screen.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
233 root 1.44 screen.o: salloc.h rxvtperl.h hookinc.h rsinc.h salloc.C
234 root 1.51 scrollbar-next.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
235     scrollbar-next.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
236     scrollbar-next.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
237     scrollbar-plain.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
238     scrollbar-plain.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
239     scrollbar-plain.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
240     scrollbar-rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
241     scrollbar-rxvt.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
242     scrollbar-rxvt.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
243     scrollbar-xterm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
244     scrollbar-xterm.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
245     scrollbar-xterm.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
246     scrollbar.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
247     scrollbar.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
248     scrollbar.o: salloc.h rxvtperl.h hookinc.h rsinc.h
249     xdefaults.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
250     xdefaults.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
251     xdefaults.o: salloc.h rxvtperl.h hookinc.h rsinc.h version.h keyboard.h
252     xpm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
253     xpm.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
254     xpm.o: rxvtperl.h hookinc.h rsinc.h
255    
256     command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
257     command.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
258     command.lo: salloc.h rxvtperl.h hookinc.h rsinc.h version.h command.h
259     command.lo: keyboard.h
260 root 1.23 encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
261     encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
262     encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
263     encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
264     encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
265     encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
266     encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
267     encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
268     encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
269     encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
270     encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
271     encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
272     encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
273     encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
274     encoding.lo: table/compose.h table/category.h
275 root 1.51 fdpass.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
276     fdpass.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
277     fdpass.lo: salloc.h rxvtperl.h hookinc.h rsinc.h fdpass.h
278     init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
279 root 1.23 init.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
280 root 1.44 init.lo: salloc.h rxvtperl.h hookinc.h rsinc.h init.h
281 root 1.23 iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
282 root 1.51 keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
283     keyboard.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
284     keyboard.lo: salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h command.h
285     logging.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
286     logging.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
287     logging.lo: salloc.h rxvtperl.h hookinc.h rsinc.h ptytty.h
288     main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
289 root 1.23 main.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
290 root 1.44 main.lo: salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
291 root 1.51 misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
292 root 1.23 misc.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
293 root 1.44 misc.lo: salloc.h rxvtperl.h hookinc.h rsinc.h
294 root 1.51 netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
295     netdisp.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
296     netdisp.lo: salloc.h rxvtperl.h hookinc.h rsinc.h
297     ptytty.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
298     ptytty.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
299     ptytty.lo: salloc.h rxvtperl.h hookinc.h rsinc.h fdpass.h ptytty.h
300     rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
301 root 1.23 rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
302 root 1.44 rxvt.lo: salloc.h rxvtperl.h hookinc.h rsinc.h
303 root 1.29 rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h fdpass.h rxvt.h rxvtlib.h
304 root 1.51 rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
305     rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
306     rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
307 root 1.23 rxvtd.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
308 root 1.44 rxvtd.lo: salloc.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h fdpass.h
309 root 1.23 rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
310 root 1.51 rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
311     rxvtfont.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
312     rxvtfont.lo: salloc.h rxvtperl.h hookinc.h rsinc.h table/linedraw.h
313 root 1.41 rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
314 root 1.51 rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
315     rxvtperl.lo: salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h perlxsi.c
316     rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
317     rxvttoolkit.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
318     rxvttoolkit.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
319 root 1.23 rxvtutil.lo: rxvtutil.h
320     salloc.lo: salloc.h
321 root 1.51 screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
322     screen.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
323     screen.lo: salloc.h rxvtperl.h hookinc.h rsinc.h salloc.C
324     scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
325     scrollbar-next.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
326     scrollbar-next.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
327     scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
328 root 1.23 scrollbar-plain.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
329 root 1.39 scrollbar-plain.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h
330 root 1.44 scrollbar-plain.lo: rsinc.h
331 root 1.51 scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
332     scrollbar-rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
333     scrollbar-rxvt.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
334     scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
335 root 1.23 scrollbar-xterm.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
336 root 1.39 scrollbar-xterm.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h
337 root 1.44 scrollbar-xterm.lo: rsinc.h
338 root 1.51 scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
339     scrollbar.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
340     scrollbar.lo: salloc.h rxvtperl.h hookinc.h rsinc.h
341     xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
342     xdefaults.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
343     xdefaults.lo: salloc.h rxvtperl.h hookinc.h rsinc.h version.h keyboard.h
344     xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
345     xpm.lo: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
346     xpm.lo: rxvtperl.h hookinc.h rsinc.h