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.6 by pcg, Thu Dec 18 00:56:51 2003 UTC vs.
Revision 1.23 by root, Sun Jan 16 18:05:37 2005 UTC

1# $Id: Makefile.in,v 1.6 2003/12/18 00:56:51 pcg Exp $ 1# $Id: Makefile.in,v 1.23 2005/01/16 18:05:37 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)
55RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)c$(EXEEXT) 53RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)c$(EXEEXT)
56RXVTC_VERNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)c-$(VERSION)$(EXEEXT)
57RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)d$(EXEEXT) 54RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)d$(EXEEXT)
58RXVTD_VERNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)d-$(VERSION)$(EXEEXT)
59RXVT_OLDNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)-old$(EXEEXT) 55RXVT_OLDNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)-old$(EXEEXT)
60 56
61EXTPROS = command.extpro defaultfont.extpro graphics.extpro grkelot.extpro \ 57INTPROS = rxvtfont.intpro logging.intpro main.intpro misc.intpro \
62 init.extpro logging.extpro main.extpro menubar.extpro misc.extpro \ 58 ptytty.intpro xpm.intpro
63 netdisp.extpro ptytty.extpro screen.extpro scrollbar.extpro \
64 scrollbar-rxvt.extpro scrollbar-next.extpro scrollbar-xterm.extpro \
65 strings.extpro xdefaults.extpro xpm.extpro
66
67INTPROS = command.intpro defaultfont.intpro graphics.intpro grkelot.intpro \
68 init.intpro logging.intpro main.intpro menubar.intpro misc.intpro \
69 netdisp.intpro ptytty.intpro screen.intpro scrollbar.intpro \
70 scrollbar-rxvt.intpro scrollbar-next.intpro scrollbar-xterm.intpro \
71 strings.intpro xdefaults.intpro xpm.intpro
72
73DEPS = rxvt.h rxvtlib.h ${basedir}/config.h feature.h .protos
74 59
75# 60#
76# Distribution variables 61# Distribution variables
77# 62#
78 63
79DIST = $(HDRS) $(SRCS) Makefile.in gcc-Wall rxvtlib.h.in .indent.pro \ 64DIST = $(HDRS) $(SRCS) Makefile.in gcc-Wall rxvtlib.h.in $(INTPROS)
80 makeintprotos-awk makeextprotos-awk $(INTPROS) $(EXTPROS) .protos
81 65
82.SUFFIXES: .C .o .extpro .intpro .lo 66.SUFFIXES: .C .o .intpro .lo
83 67
84#------------------------------------------------------------------------- 68#-------------------------------------------------------------------------
85# inference rules 69# inference rules
86.C.o: 70.C.o:
87 $(COMPILE) -c $< 71 $(COMPILE) -c $<
99 @$(RMF) $@.tmp 83 @$(RMF) $@.tmp
100 @$(AWK) -f $(srcdir)/makeintprotos-awk $< > $@.tmp 84 @$(AWK) -f $(srcdir)/makeintprotos-awk $< > $@.tmp
101 @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
102 @$(RMF) $@.tmp 86 @$(RMF) $@.tmp
103 87
104.C.extpro:
105 @$(RMF) $@.tmp
106 @$(AWK) -f $(srcdir)/makeextprotos-awk $< > $@.tmp
107 @if $(CMP) -s $@ $@.tmp ; then : ; else $(ECHO) "$(AWK) -f $(srcdir)/makeextprotos-awk $< > $@"; $(CP) $@.tmp $@; fi
108 @$(RMF) $@.tmp
109#------------------------------------------------------------------------- 88#-------------------------------------------------------------------------
89
110all: allbin 90all: allbin
111 91
112rxvt: version.h rxvt.o librxvt.la 92rxvt: version.h rxvt.o librxvt.la
113 $(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 $@
114 94
115rxvtd: version.h rxvtd.o librxvt.la rxvtdaemon.o 95rxvtd: version.h rxvtd.o librxvt.la rxvtdaemon.o
116 $(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 $@
117 97
118rxvtc: version.h rxvtc.o rxvtdaemon.o 98rxvtc: version.h rxvtc.o rxvtdaemon.o
119 $(LIBTOOL) --mode=link $(LINK) rxvtc.o rxvtdaemon.o $(LIBS) $(DLIB) $(SUPLIB) -o $@ 99 $(LIBTOOL) --mode=link $(LINK) rxvtc.o rxvtdaemon.o $(LIBS) $(DLIB) -o $@
120
121.protos: $(EXTPROS)
122 @$(RMF) .protos
123 date >.protos
124 100
125librxvt.la: $(LIBOBJS) 101librxvt.la: $(LIBOBJS)
126 $(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
127#------------------------------------------------------------------------- 104#-------------------------------------------------------------------------
105
128tags: $(SRCS) $(HDRS) $(EXTRAHDRS) 106tags: $(SRCS) $(HDRS) $(EXTRAHDRS)
129 ctags $(SRCS) $(HDRS) $(EXTRAHDRS) 107 ctags $(SRCS) $(HDRS) $(EXTRAHDRS)
130 108
131allbin: .protos rxvt rxvtd rxvtc 109allbin: rxvt rxvtd rxvtc
132 110
133alldoc: 111alldoc:
134 112
135clean: 113clean:
136 $(RMF) rxvt rxvtc rxvtd 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
137 115
138realclean: clean 116realclean: clean
139 $(RMF) tags librxvt.h 117 $(RMF) tags librxvt.h
140 118
141cleandir: realclean 119cleandir: realclean
153 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) librxvt.la $(DESTDIR)$(libdir)/librxvt.la; \ 131 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) librxvt.la $(DESTDIR)$(libdir)/librxvt.la; \
154 fi 132 fi
155 $(RMF) $(RXVT_BINNAME) 133 $(RMF) $(RXVT_BINNAME)
156 $(RMF) $(RXVTC_BINNAME) 134 $(RMF) $(RXVTC_BINNAME)
157 $(RMF) $(RXVTD_BINNAME) 135 $(RMF) $(RXVTD_BINNAME)
158 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) rxvt $(RXVT_VERNAME) 136 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
159 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) rxvtc $(RXVTC_VERNAME) 137 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
160 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) rxvtd $(RXVTD_VERNAME) 138 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
161 $(LN) $(RXVT_VERNAME) $(RXVT_BINNAME)
162 $(LN) $(RXVTC_VERNAME) $(RXVTC_BINNAME)
163 $(LN) $(RXVTD_VERNAME) $(RXVTD_BINNAME)
164 139
165uninstall: 140uninstall:
166 @$(ECHO) $(RMF) $(RXVT_VERNAME) 141 @$(ECHO) $(RMF) $(RXVT_VERNAME)
167 @$(RMF) $(RXVT_VERNAME) 142 @$(RMF) $(RXVT_VERNAME)
168 @$(ECHO) "$(LIBTOOL) --mode=uninstall $(RMF) $(RXVT_BINNAME)" 143 @$(ECHO) "$(LIBTOOL) --mode=uninstall $(RMF) $(RXVT_BINNAME)"
175 fi 150 fi
176 151
177distdirs: 152distdirs:
178 mkdir $(basedir)/../$(VERNAME)/$(thisdir) 153 mkdir $(basedir)/../$(VERNAME)/$(thisdir)
179 154
180distcopy: .protos $(INTPROS) 155distcopy: $(INTPROS)
181 $(CP) -p $(DIST) $(basedir)/../$(VERNAME)/$(thisdir) 156 $(CP) -p $(DIST) $(basedir)/../$(VERNAME)/$(thisdir)
182 157
183# ----------------------------------------------------------------------- 158depend:
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
184# DO NOT DELETE: nice dependency list follows 162# DO NOT DELETE: nice dependency list follows
185#
186 163
187defaultfont.h: encoding.h rxvtvec.h 164command.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
188rxvtlib.h: rxvtcolor.h defaultfont.h 165command.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
189rxvtdaemon.o: rxvtdaemon.C rxvtdaemon.h 166command.o: salloc.h menubar.h version.h command.h keyboard.h
190rxvtd.o: rxvtd.C $(DEPS) rxvtdaemon.h rxvtvec.h 167encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
191rxvtc.o: rxvtc.C $(DEPS) rxvtdaemon.h rxvtvec.h 168encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
169encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
170encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
171encoding.o: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
172encoding.o: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
173encoding.o: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
174encoding.o: table/gb2312_1980_0.h table/cns11643_1992_1.h
175encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h
176encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h
177encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
178encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
179encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
180encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
181encoding.o: table/compose.h table/category.h
182init.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h
183init.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
184init.o: menubar.h init.h
185iom.o: iom.h iom_conf.h rxvtutil.h callback.h
186keyboard.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
187keyboard.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
188keyboard.o: salloc.h menubar.h keyboard.h command.h
189logging.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
190logging.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
191logging.o: salloc.h menubar.h logging.h logging.intpro
192main.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h
193main.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
194main.o: menubar.h main.intpro keyboard.h
195menubar.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
196menubar.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
197menubar.o: salloc.h menubar.h version.h
198misc.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h
199misc.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
200misc.o: menubar.h misc.intpro
201netdisp.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
202netdisp.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
203netdisp.o: salloc.h menubar.h
204ptytty.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
205ptytty.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
206ptytty.o: salloc.h menubar.h
207rxvt.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h
208rxvt.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
209rxvt.o: menubar.h
210rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h rxvt.h rxvtlib.h ptytty.h
211rxvtc.o: feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
212rxvtc.o: callback.h salloc.h menubar.h
213rxvtd.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
214rxvtd.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
215rxvtd.o: salloc.h menubar.h rxvtdaemon.h
216rxvtdaemon.o: rxvtdaemon.h rxvtutil.h
217rxvtfont.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
218rxvtfont.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
219rxvtfont.o: salloc.h menubar.h table/linedraw.h
220rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
221rxvttoolkit.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
222rxvttoolkit.o: callback.h salloc.h menubar.h
223rxvtutil.o: rxvtutil.h
224salloc.o: salloc.h
225screen.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
226screen.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
227screen.o: salloc.h menubar.h salloc.C
228scrollbar-next.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
229scrollbar-next.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
230scrollbar-next.o: callback.h salloc.h menubar.h
231scrollbar-plain.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
232scrollbar-plain.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
233scrollbar-plain.o: callback.h salloc.h menubar.h
234scrollbar-rxvt.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
235scrollbar-rxvt.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
236scrollbar-rxvt.o: callback.h salloc.h menubar.h
237scrollbar-xterm.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
238scrollbar-xterm.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
239scrollbar-xterm.o: callback.h salloc.h menubar.h
240scrollbar.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
241scrollbar.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
242scrollbar.o: salloc.h menubar.h
243strings.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
244strings.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
245strings.o: salloc.h menubar.h
246xdefaults.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
247xdefaults.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
248xdefaults.o: salloc.h menubar.h version.h keyboard.h
249xpm.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h
250xpm.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
251xpm.o: menubar.h xpm.intpro
192 252
193command.o: command.C $(DEPS) command.intpro command.h version.h 253command.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
194defaultfont.o: defaultfont.C $(DEPS) defaultfont.intpro defaultfont.h 254command.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
195graphics.o: graphics.C $(DEPS) graphics.intpro 255command.lo: salloc.h menubar.h version.h command.h keyboard.h
196grkelot.o: grkelot.C $(DEPS) grkelot.intpro grkelot.h 256encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
197init.o: init.C $(DEPS) init.intpro init.h defaultfont.h 257encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
198logging.o: logging.C $(DEPS) logging.intpro logging.h 258encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
199main.o: main.C $(DEPS) main.intpro 259encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
200menubar.o: menubar.C $(DEPS) menubar.intpro menubar.h version.h 260encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
201misc.o: misc.C $(DEPS) misc.intpro 261encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
202netdisp.o: netdisp.C $(DEPS) netdisp.intpro netdisp.h 262encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
203ptytty.o: ptytty.C $(DEPS) ptytty.intpro 263encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
204rxvt.o: rxvt.C $(DEPS) 264encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
205screen.o: screen.C $(DEPS) screen.intpro defaultfont.h 265encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
206scrollbar.o: scrollbar.C $(DEPS) scrollbar.intpro 266encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
207scrollbar-rxvt.o: scrollbar-rxvt.C $(DEPS) scrollbar-rxvt.intpro 267encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
208scrollbar-next.o: scrollbar-next.C $(DEPS) scrollbar-next.intpro 268encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
209scrollbar-xterm.o: scrollbar-xterm.C $(DEPS) scrollbar-xterm.intpro 269encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
210strings.o: strings.C $(DEPS) strings.intpro 270encoding.lo: table/compose.h table/category.h
211xdefaults.o: xdefaults.C $(DEPS) xdefaults.intpro version.h 271init.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
212xpm.o: xpm.C $(DEPS) xpm.intpro 272init.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
213encoding.o: encoding.C $(DEPS) encoding.h 273init.lo: salloc.h menubar.h init.h
214rxvtcolor.o: rxvtcolor.C $(DEPS) 274iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
215iom.o: iom.C $(DEPS) iom.h 275keyboard.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
216 276keyboard.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
217command.lo: command.C $(DEPS) command.intpro command.h version.h 277keyboard.lo: salloc.h menubar.h keyboard.h command.h
218defaultfont.lo: defaultfont.C $(DEPS) defaultfont.intpro defaultfont.h encoding.h 278logging.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
219graphics.lo: graphics.C $(DEPS) graphics.intpro defaultfont.h 279logging.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
220grkelot.lo: grkelot.C $(DEPS) grkelot.intpro grkelot.h 280logging.lo: salloc.h menubar.h logging.h logging.intpro
221init.lo: init.C $(DEPS) init.intpro init.h 281main.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
222logging.lo: logging.C $(DEPS) logging.intpro logging.h 282main.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
223main.lo: main.C $(DEPS) main.intpro 283main.lo: salloc.h menubar.h main.intpro keyboard.h
224menubar.lo: menubar.C $(DEPS) menubar.intpro menubar.h version.h 284menubar.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
225misc.lo: misc.C $(DEPS) misc.intpro 285menubar.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
226netdisp.lo: netdisp.C $(DEPS) netdisp.intpro netdisp.h 286menubar.lo: salloc.h menubar.h version.h
227ptytty.lo: ptytty.C $(DEPS) ptytty.intpro 287misc.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
228rxvt.lo: rxvt.C $(DEPS) 288misc.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
229screen.lo: screen.C $(DEPS) screen.intpro defaultfont.h 289misc.lo: salloc.h menubar.h misc.intpro
230scrollbar.lo: scrollbar.C $(DEPS) scrollbar.intpro 290netdisp.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
231scrollbar-rxvt.lo: scrollbar-rxvt.C $(DEPS) scrollbar-rxvt.intpro 291netdisp.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
232scrollbar-next.lo: scrollbar-next.C $(DEPS) scrollbar-next.intpro 292netdisp.lo: salloc.h menubar.h
233scrollbar-xterm.lo: scrollbar-xterm.C $(DEPS) scrollbar-xterm.intpro 293ptytty.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
234strings.lo: strings.C $(DEPS) strings.intpro 294ptytty.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
235xdefaults.lo: xdefaults.C $(DEPS) xdefaults.intpro version.h 295ptytty.lo: salloc.h menubar.h
236xpm.lo: xpm.C $(DEPS) xpm.intpro 296rxvt.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
237encoding.lo: encoding.C $(DEPS) encoding.h 297rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
238rxvtcolor.lo: rxvtcolor.C $(DEPS) 298rxvt.lo: salloc.h menubar.h
239iom.lo: iom.C $(DEPS) iom.h 299rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h rxvt.h rxvtlib.h ptytty.h
240 300rxvtc.lo: feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
241 301rxvtc.lo: callback.h salloc.h menubar.h
302rxvtd.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
303rxvtd.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
304rxvtd.lo: salloc.h menubar.h rxvtdaemon.h
305rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
306rxvtfont.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
307rxvtfont.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
308rxvtfont.lo: salloc.h menubar.h table/linedraw.h
309rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
310rxvttoolkit.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
311rxvttoolkit.lo: callback.h salloc.h menubar.h
312rxvtutil.lo: rxvtutil.h
313salloc.lo: salloc.h
314screen.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
315screen.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
316screen.lo: salloc.h menubar.h salloc.C
317scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
318scrollbar-next.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
319scrollbar-next.lo: callback.h salloc.h menubar.h
320scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h
321scrollbar-plain.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
322scrollbar-plain.lo: iom_conf.h callback.h salloc.h menubar.h
323scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
324scrollbar-rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
325scrollbar-rxvt.lo: callback.h salloc.h menubar.h
326scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h
327scrollbar-xterm.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
328scrollbar-xterm.lo: iom_conf.h callback.h salloc.h menubar.h
329scrollbar.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
330scrollbar.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
331scrollbar.lo: salloc.h menubar.h
332strings.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
333strings.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
334strings.lo: salloc.h menubar.h
335xdefaults.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
336xdefaults.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
337xdefaults.lo: salloc.h menubar.h version.h keyboard.h
338xpm.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h
339xpm.lo: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
340xpm.lo: menubar.h xpm.intpro

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines