ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.24
Committed: Wed Feb 2 08:09:23 2005 UTC (19 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-4_9, rel-5_0
Changes since 1.23: +1 -2 lines
Log Message:
*** empty log message ***

File Contents

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