ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/Makefile.in
(Generate patch)

Comparing rxvt-unicode/src/Makefile.in (file contents):
Revision 1.4 by pcg, Wed Nov 26 10:42:34 2003 UTC vs.
Revision 1.24 by root, Wed Feb 2 08:09:23 2005 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines