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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines