ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.25
Committed: Mon Feb 14 10:44:50 2005 UTC (19 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-5_1
Changes since 1.24: +0 -1 lines
Log Message:
*** empty log message ***

File Contents

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