ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
Revision: 1.23
Committed: Sun Jan 16 18:05:37 2005 UTC (19 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-4_8
Changes since 1.19: +188 -63 lines
Log Message:
*** empty log message ***

File Contents

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