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.26 by root, Wed Feb 16 20:32:05 2005 UTC vs.
Revision 1.97 by ayin, Wed Jun 13 12:34:32 2007 UTC

1@MCOMMON@ 1DATE=@DATE@
2 2VERSION=@VERSION@
3LINT = lint -DNARROWPROTO=1 $(XINC) -chapbxz 3RXVTNAME=@RXVTNAME@
4SHELL = /bin/sh
5prefix = @prefix@
6exec_prefix = @exec_prefix@
7bindir = @bindir@
8libdir = @libdir@
9includedir = @includedir@
10CC = @CC@
11CXX = @CXX@
12CPP = @CPP@
13CP = @CP@
14SED = @SED@
15ECHO = @ECHO@
16PERL = @PERL@
17INSTALL = @INSTALL@
18INSTALL_PROGRAM = @INSTALL@ -m 755
19INSTALL_DATA = @INSTALL@ -m 644
20CXXFLAGS = @CXXFLAGS@
21CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@
22LDFLAGS = @LDFLAGS@
23DEFS = @DEFS@
24LIBS = @LIBS@
25XINC = @X_CFLAGS@ @XPM_CFLAGS@ @LIBAFTERIMAGE_CFLAGS@
26XLIB = @X_LIBS@ @XPM_LIBS@ @AFTERIMAGE_LIBS@ -lX11 @X_EXTRA_LIBS@
27CXXLIB = @CXXLIB@
28COMPILE = $(CXX) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CXXFLAGS) $(DEBUG) $(XINC) -I.. -I$(srcdir) -I.
29LINK = @LINKER@ $(LDFLAGS)
4 30
5srcdir = @srcdir@ 31srcdir = @srcdir@
6VPATH = @srcdir@ 32VPATH = @srcdir@
7.PATH: @srcdir@
8 33
9top_builddir = ..
10basedir = ..
11thisdir = src
12MKDIR = @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
19DEBUG=-DDEBUG_STRICT @DEBUG@ 34DEBUG=-DDEBUG_STRICT
20 35
21first_rule: all 36first_rule: all
22dummy: 37dummy:
23 38
24COMMON = \ 39COMMON = \
25 command.o rxvtfont.o init.o logging.o \ 40 command.o rxvtfont.o init.o logging.o main.o misc.o netdisp.o \
26 main.o menubar.o misc.o netdisp.o ptytty.o screen.o \ 41 ptytty.o proxy.o screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \
27 scrollbar.o scrollbar-next.o scrollbar-rxvt.o scrollbar-xterm.o scrollbar-plain.o \ 42 scrollbar-xterm.o scrollbar-plain.o xdefaults.o xpm.o encoding.o \
28 strings.o xdefaults.o xpm.o encoding.o rxvttoolkit.o rxvtutil.o iom.o keyboard.o 43 rxvttoolkit.o rxvtutil.o iom.o keyboard.o fdpass.o @PERL_O@
44
45COMMON_DAEMON = rxvtdaemon.o
29 46
30RXVT_BASENAME=`$(ECHO) $(RXVTNAME)|$(SED) 's/$(EXEEXT)$$//'|$(SED) '$(transform)'` 47RXVT_BASENAME=`$(ECHO) $(RXVTNAME)|$(SED) 's/$(EXEEXT)$$//'|$(SED) '$(transform)'`
31RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)$(EXEEXT) 48RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)$(EXEEXT)
32RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)c$(EXEEXT) 49RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)c$(EXEEXT)
33RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)d$(EXEEXT) 50RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)d$(EXEEXT)
34RXVT_OLDNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)-old$(EXEEXT)
35 51
36# 52#
37# Distribution variables 53# Distribution variables
38# 54#
39 55
40.SUFFIXES: .C .o 56.SUFFIXES: .C .c .o
41 57
42#------------------------------------------------------------------------- 58#-------------------------------------------------------------------------
43# inference rules 59# inference rules
44.C.o: 60.C.o:
45 $(COMPILE) -c $< 61 $(COMPILE) -c $<
56#------------------------------------------------------------------------- 72#-------------------------------------------------------------------------
57 73
58all: allbin 74all: allbin
59 75
60rxvt: rxvt.o $(COMMON) 76rxvt: rxvt.o $(COMMON)
61 $(LINK) -o $@ $^ $(LIBS) $(XLIB) $(DLIB) 77 $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) @PERLLIB@
62# $(LIBTOOL) --mode=link $(LINK) rxvt.o librxvt.la $(LIBS) $(XLIB) $(DLIB) -o $@ 78# $(LIBTOOL) --mode=link $(LINK) rxvt.o librxvt.la $(LIBS) $(XLIB) -o $@
63 79
64rxvtd: rxvtd.o rxvtdaemon.o $(COMMON) 80rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON)
65 $(LINK) -o $@ $^ $(LIBS) $(XLIB) $(DLIB) 81 $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) @PERLLIB@
66# $(LIBTOOL) --mode=link $(LINK) rxvtd.o rxvtdaemon.o librxvt.la $(LIBS) $(XLIB) $(DLIB) -o $@ 82# $(LIBTOOL) --mode=link $(LINK) rxvtd.o rxvtdaemon.o librxvt.la $(LIBS) $(XLIB) -o $@
67 83
68rxvtc: rxvtc.o rxvtdaemon.o 84rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass.o
69 $(LINK) -o $@ $^ $(LIBS) $(DLIB) 85 $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass.o $(CXXLIB)
70# $(LIBTOOL) --mode=link $(LINK) rxvtc.o rxvtdaemon.o $(LIBS) $(DLIB) -o $@ 86# $(LIBTOOL) --mode=link $(LINK) rxvtc.o rxvtdaemon.o $(CXXLIB) -o $@
71 87
72#librxvt.la: $(LIBOBJS) 88#librxvt.la: $(LIBOBJS)
73# $(LIBTOOL) --mode=link $(LINK) -rpath $(libdir) -version-info $(LIBVERSION) $(LIBOBJS) $(LIBS) -o $@ 89# $(LIBTOOL) --mode=link $(LINK) -rpath $(libdir) -version-info $(LIBVERSION) $(LIBOBJS) $(LIBS) -o $@
74 90
75#------------------------------------------------------------------------- 91#-------------------------------------------------------------------------
76 92
77tags: 93tags: *.[Ch]
78 ctags *.h *.C 94 ctags *.[Ch]
95
96TAGS: *.[Ch]
97 etags *.[Ch]
79 98
80allbin: rxvt rxvtd rxvtc 99allbin: rxvt rxvtd rxvtc
81 100
82alldoc: 101alldoc:
83 102
84clean: 103clean:
85 $(RMF) rxvt rxvtc rxvtd core a.out *.o *.lo *.bak *~ *.intpro .libs/* librxvt.la tmpproto *.tmp 104 rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C
105 rm -f *.o *.lo .libs/* librxvt.la tmpproto *.tmp
86 106
107distclean: clean
108 rm -f Makefile rxvtlib.h
109
87realclean: clean 110realclean: distclean
88 $(RMF) tags librxvt.h 111 rm -f tags TAGS
89 112
90cleandir: realclean 113cleandir: realclean
91 114
92distclean: realclean 115install-perl:
93 (cd $(srcdir); $(RMF) Makefile) 116@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)
117@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt
118@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl
119@IF_PERL@ $(INSTALL_DATA) $(srcdir)/urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
120@IF_PERL@ for ext in $(srcdir)/perl/*; do test -f "$$ext" && $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/"`basename "$$ext"`"; done
94 121
95install: allbin alldoc 122install-bin: allbin
96 $(MKDIR) $(DESTDIR)$(bindir) 123 $(INSTALL) -d $(DESTDIR)$(bindir)
97 $(RMF) $(RXVT_BINNAME)
98 $(RMF) $(RXVTC_BINNAME)
99 $(RMF) $(RXVTD_BINNAME)
100 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME) 124 $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME)
101 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME) 125 $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
102 $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME) 126 $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
103 127
104distdirs: 128install: install-bin install-perl
105 mkdir $(basedir)/../$(VERNAME)/$(thisdir)
106 129
107distcopy: $(INTPROS) 130perlxsi.c: Makefile
108 $(CP) -p $(DIST) $(basedir)/../$(VERNAME)/$(thisdir) 131 $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
132
133rxvtperl.C: rxvtperl.xs iom_perl.h iom_perl.xs typemap typemap.iom
134 PERL="$(PERL)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap.iom -typemap typemap -prototypes $(srcdir)/rxvtperl.xs >$@
135
136rxvtperl.o: rxvtperl.C perlxsi.c
137 $(COMPILE) @PERLFLAGS@ -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
109 138
110depend: 139depend:
111 makedepend -f Makefile.in -I. -Y *.C >/dev/null 2>&1 140 makedepend -f Makefile.in -I. -Y *.C >/dev/null 2>&1
112 makedepend -f Makefile.in -I. -Y *.C -a -o .lo >/dev/null 2>&1 141 makedepend -f Makefile.in -I. -Y *.C -a -o .lo >/dev/null 2>&1
113 142
114# DO NOT DELETE: nice dependency list follows 143# DO NOT DELETE: nice dependency list follows
115 144
116command.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 145command.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
117command.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 146command.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
118command.o: salloc.h menubar.h version.h command.h keyboard.h 147command.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h version.h
148command.o: command.h keyboard.h
119encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h 149encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
120encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h 150encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
121encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h 151encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
122encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h 152encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
123encoding.o: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h 153encoding.o: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
129encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h 159encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h
130encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h 160encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
131encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h 161encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
132encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h 162encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
133encoding.o: table/compose.h table/category.h 163encoding.o: table/compose.h table/category.h
164fdpass.o: ../config.h libptytty.h
134init.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h 165init.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
135init.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 166init.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h callback.h
136init.o: menubar.h init.h 167init.o: salloc.h rxvtperl.h hookinc.h rsinc.h init.h
137iom.o: iom.h iom_conf.h rxvtutil.h callback.h 168iom.o: iom.h iom_conf.h rxvtutil.h libptytty.h callback.h
138keyboard.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 169keyboard.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
139keyboard.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 170keyboard.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
140keyboard.o: salloc.h menubar.h keyboard.h command.h 171keyboard.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
141logging.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 172keyboard.o: command.h
142logging.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 173logging.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
143logging.o: salloc.h menubar.h logging.h 174logging.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
175logging.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
144main.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h 176main.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
145main.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 177main.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h callback.h
146main.o: menubar.h keyboard.h 178main.o: salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
147menubar.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
148menubar.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
149menubar.o: salloc.h menubar.h version.h
150misc.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h 179misc.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
151misc.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 180misc.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h callback.h
152misc.o: menubar.h 181misc.o: salloc.h rxvtperl.h hookinc.h rsinc.h
153netdisp.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 182netdisp.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
154netdisp.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 183netdisp.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
155netdisp.o: salloc.h menubar.h 184netdisp.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
156ptytty.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 185proxy.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
157ptytty.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 186proxy.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
158ptytty.o: salloc.h menubar.h 187proxy.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
188ptytty.o: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
189ptytty.o: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
190ptytty.o: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
159rxvt.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h 191rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
160rxvt.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 192rxvt.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h callback.h
161rxvt.o: menubar.h 193rxvt.o: salloc.h rxvtperl.h hookinc.h rsinc.h
162rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h rxvt.h rxvtlib.h ptytty.h 194rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
163rxvtc.o: feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h 195rxvtc.o: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
164rxvtc.o: callback.h salloc.h menubar.h 196rxvtc.o: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
165rxvtd.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 197rxvtd.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
166rxvtd.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 198rxvtd.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
167rxvtd.o: salloc.h menubar.h rxvtdaemon.h 199rxvtd.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
168rxvtdaemon.o: rxvtdaemon.h rxvtutil.h 200rxvtdaemon.o: rxvtdaemon.h rxvtutil.h
169rxvtfont.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 201rxvtfont.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
170rxvtfont.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 202rxvtfont.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
171rxvtfont.o: salloc.h menubar.h table/linedraw.h 203rxvtfont.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h table/linedraw.h
204rxvtperl.o: ../config.h iom.h iom_conf.h rxvtutil.h libptytty.h callback.h
205rxvtperl.o: rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
206rxvtperl.o: rxvttoolkit.h salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
207rxvtperl.o: perlxsi.c ./iom_perl.h
172rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 208rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
173rxvttoolkit.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 209rxvttoolkit.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
174rxvttoolkit.o: callback.h salloc.h menubar.h 210rxvttoolkit.o: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
175rxvtutil.o: rxvtutil.h 211rxvtutil.o: rxvtutil.h
176salloc.o: salloc.h 212salloc.o: salloc.h
177screen.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 213screen.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
178screen.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 214screen.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
179screen.o: salloc.h menubar.h salloc.C 215screen.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h salloc.C
180scrollbar-next.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 216scrollbar-next.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
181scrollbar-next.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 217scrollbar-next.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
182scrollbar-next.o: callback.h salloc.h menubar.h 218scrollbar-next.o: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h
219scrollbar-next.o: rsinc.h
183scrollbar-plain.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 220scrollbar-plain.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
184scrollbar-plain.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 221scrollbar-plain.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
185scrollbar-plain.o: callback.h salloc.h menubar.h 222scrollbar-plain.o: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h
223scrollbar-plain.o: rsinc.h
186scrollbar-rxvt.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 224scrollbar-rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
187scrollbar-rxvt.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 225scrollbar-rxvt.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
188scrollbar-rxvt.o: callback.h salloc.h menubar.h 226scrollbar-rxvt.o: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h
227scrollbar-rxvt.o: rsinc.h
189scrollbar-xterm.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 228scrollbar-xterm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
190scrollbar-xterm.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 229scrollbar-xterm.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
191scrollbar-xterm.o: callback.h salloc.h menubar.h 230scrollbar-xterm.o: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h
231scrollbar-xterm.o: rsinc.h
192scrollbar.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 232scrollbar.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
193scrollbar.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 233scrollbar.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
194scrollbar.o: salloc.h menubar.h 234scrollbar.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
195strings.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
196strings.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
197strings.o: salloc.h menubar.h
198xdefaults.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 235xdefaults.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
199xdefaults.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 236xdefaults.o: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
200xdefaults.o: salloc.h menubar.h version.h keyboard.h 237xdefaults.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h version.h
238xdefaults.o: keyboard.h
201xpm.o: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h 239xpm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
202xpm.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 240xpm.o: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h callback.h
203xpm.o: menubar.h 241xpm.o: salloc.h rxvtperl.h hookinc.h rsinc.h
204 242
205command.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 243command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
206command.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 244command.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
207command.lo: salloc.h menubar.h version.h command.h keyboard.h 245command.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h version.h
246command.lo: command.h keyboard.h
208encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h 247encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
209encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h 248encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
210encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h 249encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
211encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h 250encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
212encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h 251encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
218encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h 257encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
219encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h 258encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
220encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h 259encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
221encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h 260encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
222encoding.lo: table/compose.h table/category.h 261encoding.lo: table/compose.h table/category.h
262fdpass.lo: ../config.h libptytty.h
223init.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 263init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
224init.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 264init.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
225init.lo: salloc.h menubar.h init.h 265init.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h init.h
226iom.lo: iom.h iom_conf.h rxvtutil.h callback.h 266iom.lo: iom.h iom_conf.h rxvtutil.h libptytty.h callback.h
227keyboard.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 267keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
228keyboard.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 268keyboard.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
229keyboard.lo: salloc.h menubar.h keyboard.h command.h 269keyboard.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
230logging.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 270keyboard.lo: command.h
231logging.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 271logging.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
232logging.lo: salloc.h menubar.h logging.h 272logging.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
273logging.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
233main.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 274main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
234main.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 275main.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
235main.lo: salloc.h menubar.h keyboard.h 276main.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
236menubar.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
237menubar.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
238menubar.lo: salloc.h menubar.h version.h
239misc.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 277misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
240misc.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 278misc.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
241misc.lo: salloc.h menubar.h 279misc.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
242netdisp.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 280netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
243netdisp.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 281netdisp.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
244netdisp.lo: salloc.h menubar.h 282netdisp.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
245ptytty.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 283proxy.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
246ptytty.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 284proxy.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
247ptytty.lo: salloc.h menubar.h 285proxy.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
286ptytty.lo: ../config.h ptytty.h libptytty.h ptytty_conf.h rxvt.h rxvtlib.h
287ptytty.lo: optinc.h feature.h encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h
288ptytty.lo: iom.h iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
248rxvt.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 289rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
249rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 290rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
250rxvt.lo: salloc.h menubar.h 291rxvt.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
251rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h rxvt.h rxvtlib.h ptytty.h 292rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h libptytty.h rxvt.h rxvtlib.h
252rxvtc.lo: feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h 293rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
253rxvtc.lo: callback.h salloc.h menubar.h 294rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
254rxvtd.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 295rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
255rxvtd.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 296rxvtd.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
256rxvtd.lo: salloc.h menubar.h rxvtdaemon.h 297rxvtd.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h
257rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h 298rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
258rxvtfont.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 299rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
259rxvtfont.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 300rxvtfont.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
301rxvtfont.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
260rxvtfont.lo: salloc.h menubar.h table/linedraw.h 302rxvtfont.lo: table/linedraw.h
303rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h libptytty.h callback.h
304rxvtperl.lo: rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
305rxvtperl.lo: rxvttoolkit.h salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
306rxvtperl.lo: perlxsi.c ./iom_perl.h
261rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 307rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
262rxvttoolkit.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 308rxvttoolkit.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
263rxvttoolkit.lo: callback.h salloc.h menubar.h 309rxvttoolkit.lo: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
264rxvtutil.lo: rxvtutil.h 310rxvtutil.lo: rxvtutil.h
265salloc.lo: salloc.h 311salloc.lo: salloc.h
266screen.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 312screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
267screen.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 313screen.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h
268screen.lo: salloc.h menubar.h salloc.C 314screen.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h salloc.C
269scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 315scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
270scrollbar-next.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 316scrollbar-next.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
271scrollbar-next.lo: callback.h salloc.h menubar.h 317scrollbar-next.lo: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h
318scrollbar-next.lo: rsinc.h
272scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h 319scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
273scrollbar-plain.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h 320scrollbar-plain.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
274scrollbar-plain.lo: iom_conf.h callback.h salloc.h menubar.h 321scrollbar-plain.lo: iom_conf.h libptytty.h callback.h salloc.h rxvtperl.h
322scrollbar-plain.lo: hookinc.h rsinc.h
275scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 323scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
276scrollbar-rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h 324scrollbar-rxvt.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
277scrollbar-rxvt.lo: callback.h salloc.h menubar.h 325scrollbar-rxvt.lo: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h
326scrollbar-rxvt.lo: rsinc.h
278scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h 327scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
279scrollbar-xterm.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h 328scrollbar-xterm.lo: encoding.h rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h
280scrollbar-xterm.lo: iom_conf.h callback.h salloc.h menubar.h 329scrollbar-xterm.lo: iom_conf.h libptytty.h callback.h salloc.h rxvtperl.h
330scrollbar-xterm.lo: hookinc.h rsinc.h
281scrollbar.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 331scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
282scrollbar.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 332scrollbar.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
283scrollbar.lo: salloc.h menubar.h 333scrollbar.lo: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
284strings.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h
285strings.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
286strings.lo: salloc.h menubar.h
287xdefaults.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h 334xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
288xdefaults.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h 335xdefaults.lo: rxvtutil.h rxvtfont.h rxvttoolkit.h iom.h iom_conf.h
336xdefaults.lo: libptytty.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
289xdefaults.lo: salloc.h menubar.h version.h keyboard.h 337xdefaults.lo: version.h keyboard.h
290xpm.lo: ../config.h rxvt.h rxvtlib.h ptytty.h feature.h encoding.h rxvtfont.h 338xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtutil.h
291xpm.lo: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h 339xpm.lo: rxvtfont.h rxvttoolkit.h iom.h iom_conf.h libptytty.h callback.h
292xpm.lo: menubar.h 340xpm.lo: salloc.h rxvtperl.h hookinc.h rsinc.h

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines