ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.32
Committed: Mon Jan 2 16:04:34 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.31: +4 -8 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.17 $(RMF) rxvt rxvtc rxvtd core a.out *.o *.lo *.bak *~ *.intpro .libs/* librxvt.la tmpproto *.tmp
87 pcg 1.1
88     realclean: clean
89     $(RMF) tags librxvt.h
90    
91     cleandir: realclean
92    
93     distclean: realclean
94     (cd $(srcdir); $(RMF) Makefile)
95    
96 root 1.31 install-perl:
97 root 1.32 @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)
98     @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
99     @IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl-ext
100 root 1.31 @IF_PERL@ $(INSTALL_DATA) urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
101     @IF_PERL@ for ext in perl-ext/*; do $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/"$$ext"; done
102    
103     install: allbin alldoc install-perl
104 root 1.32 $(INSTALL) -d $(DESTDIR)$(bindir)
105 root 1.26 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
106     $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
107     $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
108 pcg 1.1
109 root 1.30 perlxsi.c: Makefile
110     $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
111    
112     rxvtperl.C: rxvtperl.xs typemap
113     $(PERL) @PERLARCHLIB@/ExtUtils/xsubpp -C++ -typemap @PERLARCHLIB@/ExtUtils/typemap -typemap typemap -prototypes $< >$@
114    
115     rxvtperl.o: rxvtperl.C perlxsi.c
116     $(COMPILE) @PERLFLAGS@ -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
117    
118 root 1.23 depend:
119     makedepend -f Makefile.in -I. -Y *.C >/dev/null 2>&1
120     makedepend -f Makefile.in -I. -Y *.C -a -o .lo >/dev/null 2>&1
121    
122 pcg 1.1 # DO NOT DELETE: nice dependency list follows
123    
124 root 1.23 command.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
125     command.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
126 root 1.30 command.o: salloc.h menubar.h rxvtperl.h version.h command.h keyboard.h
127 root 1.23 encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
128     encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
129     encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
130     encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
131     encoding.o: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
132     encoding.o: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
133     encoding.o: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
134     encoding.o: table/gb2312_1980_0.h table/cns11643_1992_1.h
135     encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h
136     encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h
137     encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
138     encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
139     encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
140     encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
141     encoding.o: table/compose.h table/category.h
142 root 1.28 fdpass.o: ../config.h fdpass.h
143 root 1.23 init.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h
144     init.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
145     init.o: menubar.h init.h
146     iom.o: iom.h iom_conf.h rxvtutil.h callback.h
147     keyboard.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
148     keyboard.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
149     keyboard.o: salloc.h menubar.h keyboard.h command.h
150     logging.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
151     logging.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
152 root 1.26 logging.o: salloc.h menubar.h logging.h
153 root 1.23 main.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h
154     main.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
155 root 1.30 main.o: menubar.h keyboard.h rxvtperl.h
156 root 1.23 menubar.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
157     menubar.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
158     menubar.o: salloc.h menubar.h version.h
159     misc.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h
160     misc.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
161 root 1.26 misc.o: menubar.h
162 root 1.23 netdisp.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
163     netdisp.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
164     netdisp.o: salloc.h menubar.h
165     ptytty.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
166     ptytty.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
167     ptytty.o: salloc.h menubar.h
168     rxvt.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h
169     rxvt.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
170     rxvt.o: menubar.h
171 root 1.29 rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h fdpass.h rxvt.h rxvtlib.h
172     rxvtc.o: ptytty.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
173     rxvtc.o: iom_conf.h callback.h salloc.h menubar.h
174 root 1.23 rxvtd.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
175     rxvtd.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
176 root 1.29 rxvtd.o: salloc.h menubar.h rxvtdaemon.h fdpass.h
177 root 1.23 rxvtdaemon.o: rxvtdaemon.h rxvtutil.h
178     rxvtfont.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
179     rxvtfont.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
180     rxvtfont.o: salloc.h menubar.h table/linedraw.h
181 root 1.30 rxvtperl.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
182     rxvtperl.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
183     rxvtperl.o: salloc.h menubar.h rxvtperl.h perlxsi.c
184 root 1.23 rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
185     rxvttoolkit.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
186     rxvttoolkit.o: callback.h salloc.h menubar.h
187     rxvtutil.o: rxvtutil.h
188     salloc.o: salloc.h
189     screen.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
190     screen.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
191 root 1.30 screen.o: salloc.h menubar.h rxvtperl.h salloc.C
192 root 1.23 scrollbar-next.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
193     scrollbar-next.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
194     scrollbar-next.o: callback.h salloc.h menubar.h
195     scrollbar-plain.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
196     scrollbar-plain.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
197     scrollbar-plain.o: callback.h salloc.h menubar.h
198     scrollbar-rxvt.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
199     scrollbar-rxvt.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
200     scrollbar-rxvt.o: callback.h salloc.h menubar.h
201     scrollbar-xterm.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
202     scrollbar-xterm.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
203     scrollbar-xterm.o: callback.h salloc.h menubar.h
204     scrollbar.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
205     scrollbar.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
206     scrollbar.o: salloc.h menubar.h
207     strings.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
208     strings.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
209     strings.o: salloc.h menubar.h
210     xdefaults.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
211     xdefaults.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
212     xdefaults.o: salloc.h menubar.h version.h keyboard.h
213     xpm.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h
214     xpm.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
215 root 1.26 xpm.o: menubar.h
216 root 1.23
217     command.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
218     command.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
219 root 1.30 command.lo: salloc.h menubar.h rxvtperl.h version.h command.h keyboard.h
220 root 1.23 encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
221     encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
222     encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
223     encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
224     encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
225     encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
226     encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
227     encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
228     encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
229     encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
230     encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
231     encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
232     encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
233     encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
234     encoding.lo: table/compose.h table/category.h
235 root 1.28 fdpass.lo: ../config.h fdpass.h
236 root 1.23 init.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
237     init.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
238     init.lo: salloc.h menubar.h init.h
239     iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
240     keyboard.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
241     keyboard.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
242     keyboard.lo: salloc.h menubar.h keyboard.h command.h
243     logging.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
244     logging.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
245 root 1.26 logging.lo: salloc.h menubar.h logging.h
246 root 1.23 main.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
247     main.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
248 root 1.30 main.lo: salloc.h menubar.h keyboard.h rxvtperl.h
249 root 1.23 menubar.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
250     menubar.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
251     menubar.lo: salloc.h menubar.h version.h
252     misc.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
253     misc.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
254 root 1.26 misc.lo: salloc.h menubar.h
255 root 1.23 netdisp.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
256     netdisp.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
257     netdisp.lo: salloc.h menubar.h
258     ptytty.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
259     ptytty.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
260     ptytty.lo: salloc.h menubar.h
261     rxvt.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
262     rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
263     rxvt.lo: salloc.h menubar.h
264 root 1.29 rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h fdpass.h rxvt.h rxvtlib.h
265     rxvtc.lo: ptytty.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
266     rxvtc.lo: iom_conf.h callback.h salloc.h menubar.h
267 root 1.23 rxvtd.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
268     rxvtd.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
269 root 1.29 rxvtd.lo: salloc.h menubar.h rxvtdaemon.h fdpass.h
270 root 1.23 rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
271     rxvtfont.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
272     rxvtfont.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
273     rxvtfont.lo: salloc.h menubar.h table/linedraw.h
274 root 1.30 rxvtperl.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
275     rxvtperl.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
276     rxvtperl.lo: salloc.h menubar.h rxvtperl.h perlxsi.c
277 root 1.23 rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
278     rxvttoolkit.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
279     rxvttoolkit.lo: callback.h salloc.h menubar.h
280     rxvtutil.lo: rxvtutil.h
281     salloc.lo: salloc.h
282     screen.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
283     screen.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
284 root 1.30 screen.lo: salloc.h menubar.h rxvtperl.h salloc.C
285 root 1.23 scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
286     scrollbar-next.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
287     scrollbar-next.lo: callback.h salloc.h menubar.h
288     scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h
289     scrollbar-plain.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
290     scrollbar-plain.lo: iom_conf.h callback.h salloc.h menubar.h
291     scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
292     scrollbar-rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
293     scrollbar-rxvt.lo: callback.h salloc.h menubar.h
294     scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h
295     scrollbar-xterm.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
296     scrollbar-xterm.lo: iom_conf.h callback.h salloc.h menubar.h
297     scrollbar.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
298     scrollbar.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
299     scrollbar.lo: salloc.h menubar.h
300     strings.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
301     strings.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
302     strings.lo: salloc.h menubar.h
303     xdefaults.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
304     xdefaults.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
305     xdefaults.lo: salloc.h menubar.h version.h keyboard.h
306     xpm.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h
307     xpm.lo: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
308 root 1.26 xpm.lo: menubar.h