ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.40
Committed: Wed Jan 11 21:47:24 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.39: +2 -1 lines
Log Message:
*** empty log message ***

File Contents

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