--- rxvt-unicode/src/Makefile.in 2004/03/01 01:06:46 1.13 +++ rxvt-unicode/src/Makefile.in 2013/10/27 16:20:55 1.177 @@ -1,242 +1,291 @@ -# $Id: Makefile.in,v 1.13 2004/03/01 01:06:46 pcg Exp $ -@MCOMMON@ +DATE = @DATE@ +VERSION = @VERSION@ +RXVTNAME = @RXVTNAME@ +SHELL = /bin/sh +prefix = @prefix@ +exec_prefix = @exec_prefix@ +bindir = @bindir@ +libdir = @libdir@ +man1dir = @mandir@/man1 +man1ext = 1 +man3dir = @mandir@/man3 +man3ext = 3 +PODOPTS = quotes => q<"> , center => q, release => q<$(VERSION)> +CXX = @CXX@ +PERL = @PERL@ +INSTALL = @INSTALL@ +INSTALL_PROGRAM = @INSTALL@ -m 755 +INSTALL_DATA = @INSTALL@ -m 644 +CXXFLAGS = @CXXFLAGS@ +CPPFLAGS = @CPPFLAGS@ +LDFLAGS = @LDFLAGS@ +DEFS = @DEFS@ +LIBS = @LIBS@ +XINC = @X_CFLAGS@ @PIXBUF_CFLAGS@ @STARTUP_NOTIFICATION_CFLAGS@ +XLIB = @X_LIBS@ -lX11 @X_EXTRA_LIBS@ @PIXBUF_LIBS@ @STARTUP_NOTIFICATION_LIBS@ +COMPILE = $(CXX) -I.. -I$(srcdir) -I. -I$(srcdir)/../libev -I$(srcdir)/../libptytty/src $(DEFS) $(CPPFLAGS) $(CXXFLAGS) $(XINC) +LINK = @LINKER@ $(LDFLAGS) +EXEEXT = @EXEEXT@ +PERLFLAGS = @PERLFLAGS@ +PERLLIB = @PERLLIB@ -LINT = lint -DNARROWPROTO=1 $(XINC) -chapbxz - -srcdir = @srcdir@ -VPATH = @srcdir@ -.PATH: @srcdir@ - -top_builddir = .. -basedir = .. -thisdir = src -MKDIR = @top_srcdir@/autoconf/mkinstalldirs - -# for developers: the following debug options may be used -# -DDEBUG_CMD -DDEBUG_MAIN -DDEBUG_MENU -DDEBUG_MENUARROWS -# -DDEBUG_MENUBAR_STACKING -DDEBUG_MENU_LAYOUT -DDEBUG_RESOURCES -# -DDEBUG_SCREEN -DDEBUG_SEARCH_PATH -DDEBUG_SELECT -DDEBUG_SIZE -# -DDEBUG_TTY -DDEBUG_TTYMODE -DDEBUG_X -DEBUG=-DDEBUG_STRICT @DEBUG@ +srcdir = @srcdir@ +VPATH = @srcdir@ first_rule: all dummy: -LIBSRCS = command.C defaultfont.C init.C logging.C \ - main.C menubar.C misc.C netdisp.C ptytty.C screen.C scrollbar.C \ - scrollbar-rxvt.C scrollbar-next.C scrollbar-xterm.C strings.C \ - xdefaults.C xpm.C encoding.C rxvtcolor.C rxvtstl.C iom.C \ - scrollbar-plain.C - -SRCS = rxvt.C $(LIBSRCS) - -HDRS = command.h defaultfont.h feature.h init.h logging.h \ - menubar.h netdisp.h protos.h rxvt.h rxvtgrx.h version.h encoding.h \ - rxvtstl.h iom.h iom_conf.h - -EXTRAHDRS = rxvtlib.h rxvtdaemon.h - -OBJS = command.o defaultfont.o init.o logging.o \ - main.o menubar.o misc.o netdisp.o ptytty.o screen.o \ - scrollbar.o scrollbar-next.o scrollbar-rxvt.o scrollbar-xterm.o scrollbar-plain.o \ - strings.o xdefaults.o xpm.o rxvt.o encoding.o rxvtcolor.o rxvtstl.o iom.o -LIBOBJS = command.lo defaultfont.lo init.lo logging.lo \ - main.lo menubar.lo misc.lo netdisp.lo ptytty.lo screen.lo \ - scrollbar.lo scrollbar-next.lo scrollbar-rxvt.lo scrollbar-xterm.lo scrollbar-plain.lo \ - strings.lo xdefaults.lo xpm.lo encoding.lo rxvt.lo rxvtcolor.lo rxvtstl.lo iom.lo - -LIBVERSION = @LIBVERSION@ -INSTALL_LIBRXVT = @INSTALL_LIBRXVT@ - -RXVT_BASENAME=`$(ECHO) $(RXVTNAME)|$(SED) 's/$(EXEEXT)$$//'|$(SED) '$(transform)'` -RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)$(EXEEXT) -RXVT_VERNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)-$(VERSION)$(EXEEXT) -RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)c$(EXEEXT) -RXVTC_VERNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)c-$(VERSION)$(EXEEXT) -RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)d$(EXEEXT) -RXVTD_VERNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)d-$(VERSION)$(EXEEXT) -RXVT_OLDNAME=$(DESTDIR)$(bindir)/$(RXVT_BASENAME)-old$(EXEEXT) - -EXTPROS = command.extpro defaultfont.extpro \ - init.extpro logging.extpro main.extpro menubar.extpro misc.extpro \ - netdisp.extpro ptytty.extpro screen.extpro scrollbar.extpro \ - scrollbar-rxvt.extpro scrollbar-next.extpro scrollbar-xterm.extpro scrollbar-plain.intpro \ - strings.extpro xdefaults.extpro xpm.extpro - -INTPROS = command.intpro defaultfont.intpro \ - init.intpro logging.intpro main.intpro menubar.intpro misc.intpro \ - netdisp.intpro ptytty.intpro screen.intpro scrollbar.intpro \ - scrollbar-rxvt.intpro scrollbar-next.intpro scrollbar-xterm.intpro scrollbar-plain.intpro \ - strings.intpro xdefaults.intpro xpm.intpro - -DEPS = rxvt.h rxvtlib.h ${basedir}/config.h feature.h rxvtcolor.h .protos +COMMON = \ + background.o command.o rxvtfont.o init.o main.o misc.o \ + screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o \ + scrollbar-xterm.o scrollbar-plain.o xdefaults.o encoding.o \ + rxvttoolkit.o rxvtutil.o keyboard.o rxvtimg.o \ + ev_cpp.o fdpass_wrapper.o ptytty_wrapper.o @PERL_O@ + +COMMON_DAEMON = rxvtdaemon.o + +RXVT_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)$(EXEEXT) +RXVTC_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)c$(EXEEXT) +RXVTD_BINNAME=$(DESTDIR)$(bindir)/$(RXVTNAME)d$(EXEEXT) # # Distribution variables # -DIST = $(HDRS) $(SRCS) Makefile.in gcc-Wall rxvtlib.h.in .indent.pro \ - makeintprotos-awk makeextprotos-awk $(INTPROS) $(EXTPROS) .protos - -.SUFFIXES: .C .o .extpro .intpro .lo +.SUFFIXES: .C .c .o #------------------------------------------------------------------------- # inference rules .C.o: $(COMPILE) -c $< -.C.lo: - $(LIBTOOL) --mode=compile $(COMPILE) -c $< - -.s.lo: - $(LIBTOOL) --mode=compile $(COMPILE) -c $< - -.S.lo: - $(LIBTOOL) --mode=compile $(COMPILE) -c $< - -.C.intpro: - @$(RMF) $@.tmp - @$(AWK) -f $(srcdir)/makeintprotos-awk $< > $@.tmp - @if $(CMP) -s $@ $@.tmp ; then : ; else $(ECHO) "$(AWK) -f $(srcdir)/makeintprotos-awk $< > $@"; $(CP) $@.tmp $@; fi - @$(RMF) $@.tmp - -.C.extpro: - @$(RMF) $@.tmp - @$(AWK) -f $(srcdir)/makeextprotos-awk $< > $@.tmp - @if $(CMP) -s $@ $@.tmp ; then : ; else $(ECHO) "$(AWK) -f $(srcdir)/makeextprotos-awk $< > $@"; $(CP) $@.tmp $@; fi - @$(RMF) $@.tmp - #------------------------------------------------------------------------- all: allbin -rxvt: version.h rxvt.o librxvt.la - $(LIBTOOL) --mode=link $(LINK) rxvt.o librxvt.la $(LIBS) $(XLIB) $(DLIB) -o $@ +rxvt: rxvt.o $(COMMON) + $(LINK) -o $@ rxvt.o $(COMMON) $(LIBS) $(XLIB) $(PERLLIB) -rxvtd: version.h rxvtd.o librxvt.la rxvtdaemon.o - $(LIBTOOL) --mode=link $(LINK) rxvtd.o rxvtdaemon.o librxvt.la $(LIBS) $(XLIB) $(DLIB) -o $@ +rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON) + $(LINK) -o $@ rxvtd.o $(COMMON) $(COMMON_DAEMON) $(LIBS) $(XLIB) $(PERLLIB) -rxvtc: version.h rxvtc.o rxvtdaemon.o - $(LIBTOOL) --mode=link $(LINK) rxvtc.o rxvtdaemon.o $(LIBS) $(DLIB) -o $@ +rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o + $(LINK) -o $@ rxvtc.o $(COMMON_DAEMON) fdpass_wrapper.o $(LIBS) -.protos: $(EXTPROS) - @$(RMF) .protos - date >.protos +#------------------------------------------------------------------------- -librxvt.la: $(LIBOBJS) - $(LIBTOOL) --mode=link $(LINK) -rpath $(libdir) -version-info $(LIBVERSION) $(LIBOBJS) $(LIBS) -o $@ +#EXUBERANT_OPTS = -I NOTHROW -I THROW -#------------------------------------------------------------------------- +tags: *.[Ch] + ctags $(EXUBERANT_OPTS) *.[Ch] -tags: $(SRCS) $(HDRS) $(EXTRAHDRS) - ctags $(SRCS) $(HDRS) $(EXTRAHDRS) +TAGS: *.[Ch] + etags $(EXUBERANT_OPTS) *.[Ch] -allbin: .protos rxvt rxvtd rxvtc +allbin: rxvt rxvtd rxvtc alldoc: clean: - $(RMF) rxvt rxvtc rxvtd core a.out *.o *.lo *.bak *~ *.intpro *.extpro .libs/* librxvt.la tmpproto .protos *.tmp + rm -f rxvt rxvtc rxvtd perlxsi.c rxvtperl.C manlst mantmp + rm -f *.o -realclean: clean - $(RMF) tags librxvt.h +distclean: clean + rm -f Makefile + +realclean: distclean + rm -f tags TAGS cleandir: realclean -distclean: realclean - if test $(srcdir) = .; then $(MAKE) realclean; fi - (cd $(srcdir); $(RMF) Makefile) - -install: allbin alldoc - $(MKDIR) $(DESTDIR)$(includedir) $(DESTDIR)$(libdir) $(DESTDIR)$(bindir) - @if test x$(INSTALL_LIBRXVT) = xyes; then \ - $(ECHO) "$(LIBTOOL) --mode=install $(INSTALL_DATA) rxvtlib.h $(DESTDIR)$(includedir)/rxvtlib.h"; \ - $(LIBTOOL) --mode=install $(INSTALL_DATA) rxvtlib.h $(DESTDIR)$(includedir)/rxvtlib.h; \ - $(ECHO) "$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) librxvt.la $(DESTDIR)$(libdir)/librxvt.la"; \ - $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) librxvt.la $(DESTDIR)$(libdir)/librxvt.la; \ - fi - $(RMF) $(RXVT_BINNAME) - $(RMF) $(RXVTC_BINNAME) - $(RMF) $(RXVTD_BINNAME) - $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) rxvt $(RXVT_VERNAME) - $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) rxvtc $(RXVTC_VERNAME) - $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) rxvtd $(RXVTD_VERNAME) - $(LN) $(RXVT_VERNAME) $(RXVT_BINNAME) - $(LN) $(RXVTC_VERNAME) $(RXVTC_BINNAME) - $(LN) $(RXVTD_VERNAME) $(RXVTD_BINNAME) - -uninstall: - @$(ECHO) $(RMF) $(RXVT_VERNAME) - @$(RMF) $(RXVT_VERNAME) - @$(ECHO) "$(LIBTOOL) --mode=uninstall $(RMF) $(RXVT_BINNAME)" - @$(LIBTOOL) --mode=uninstall $(RMF) $(RXVT_BINNAME) - @if test x$(INSTALL_LIBRXVT) = xyes; then \ - $(ECHO) "$(LIBTOOL) --mode=uninstall $(RMF) $(DESTDIR)$(libdir)/librxvt.la"; \ - $(LIBTOOL) --mode=uninstall $(RMF) $(DESTDIR)$(libdir)/librxvt.la; \ - $(ECHO) "$(LIBTOOL) --mode=uninstall $(RMF) $(DESTDIR)$(includedir)/rxvtlib.h"; \ - $(LIBTOOL) --mode=uninstall $(RMF) $(DESTDIR)$(includedir)/rxvtlib.h; \ - fi +install-perl: +@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir) +@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt +@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(libdir)/urxvt/perl +@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man1dir) +@IF_PERL@ $(INSTALL) -d $(DESTDIR)$(man3dir) +@IF_PERL@ $(INSTALL_DATA) $(srcdir)/urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm +@IF_PERL@ for ext in $(srcdir)/perl/*; do \ +@IF_PERL@ test -f "$$ext" || continue; \ +@IF_PERL@ base="$${ext##*/}"; \ +@IF_PERL@ $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/perl/; \ +@IF_PERL@ < "$$ext" \ +@IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "'urxvt-$$base'", $(PODOPTS))->parse_from_file' \ +@IF_PERL@ > ../mantmp; \ +@IF_PERL@ test -s ../mantmp && $(INSTALL_DATA) ../mantmp $(DESTDIR)$(man1dir)/$(RXVTNAME)-$$base.$(man1ext); \ +@IF_PERL@ < "$$ext" $(PERL) -ne '<>, (print <> . "\n"), exit if /^=head1/' >&3; \ +@IF_PERL@ done 3>manlst +@IF_PERL@ cat $(srcdir)/../doc/extensions.pod.top manlst $(srcdir)/../doc/extensions.pod.bot | \ +@IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "$(RXVTNAME)-extensions", $(PODOPTS))->parse_from_file' \ +@IF_PERL@ > mantmp +@IF_PERL@ $(INSTALL_DATA) mantmp $(DESTDIR)$(man1dir)/$(RXVTNAME)-extensions.$(man1ext) +@IF_PERL@ < $(srcdir)/urxvt.pm \ +@IF_PERL@ $(PERL) -MPod::Man -e '(new Pod::Man name => "$(RXVTNAME)perl", section => 3, $(PODOPTS))->parse_from_file' \ +@IF_PERL@ > mantmp +@IF_PERL@ $(INSTALL_DATA) mantmp $(DESTDIR)$(man3dir)/$(RXVTNAME)perl.$(man3ext) + +install-bin: allbin + $(INSTALL) -d $(DESTDIR)$(bindir) + $(INSTALL_PROGRAM) rxvt $(RXVT_BINNAME) + $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME) + $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME) + +install: install-bin install-perl + +perlxsi.c: Makefile + $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt -distdirs: - mkdir $(basedir)/../$(VERNAME)/$(thisdir) +rxvtperl.C: rxvtperl.xs iom_perl.h iom_perl.xs typemap typemap.iom + PERL="$(PERL)" $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap.iom -typemap typemap -prototypes $(srcdir)/rxvtperl.xs >$@ -distcopy: .protos $(INTPROS) - $(CP) -p $(DIST) $(basedir)/../$(VERNAME)/$(thisdir) +rxvtperl.o: rxvtperl.C perlxsi.c + $(COMPILE) $(PERLFLAGS) -DLIBDIR="\"$(libdir)/urxvt\"" -c $< -# ----------------------------------------------------------------------- -# DO NOT DELETE: nice dependency list follows -# - -defaultfont.h: encoding.h rxvtstl.h -rxvtlib.h: rxvtcolor.h defaultfont.h -rxvtdaemon.o: rxvtdaemon.C $(DEPS) rxvtdaemon.h -rxvtd.o: rxvtd.C $(DEPS) rxvtdaemon.h rxvtstl.h -rxvtc.o: rxvtc.C $(DEPS) rxvtdaemon.h rxvtstl.h - -command.o: command.C $(DEPS) command.intpro command.h version.h -defaultfont.o: defaultfont.C $(DEPS) defaultfont.intpro defaultfont.h -init.o: init.C $(DEPS) init.intpro init.h defaultfont.h -logging.o: logging.C $(DEPS) logging.intpro logging.h -main.o: main.C $(DEPS) main.intpro -menubar.o: menubar.C $(DEPS) menubar.intpro menubar.h version.h -misc.o: misc.C $(DEPS) misc.intpro -netdisp.o: netdisp.C $(DEPS) netdisp.intpro netdisp.h -ptytty.o: ptytty.C $(DEPS) ptytty.intpro -rxvt.o: rxvt.C $(DEPS) -screen.o: screen.C $(DEPS) screen.intpro defaultfont.h -scrollbar.o: scrollbar.C $(DEPS) scrollbar.intpro -scrollbar-rxvt.o: scrollbar-rxvt.C $(DEPS) scrollbar-rxvt.intpro -scrollbar-next.o: scrollbar-next.C $(DEPS) scrollbar-next.intpro -scrollbar-xterm.o: scrollbar-xterm.C $(DEPS) scrollbar-xterm.intpro -scrollbar-plain.o: scrollbar-plain.C $(DEPS) scrollbar-plain.intpro -strings.o: strings.C $(DEPS) strings.intpro -xdefaults.o: xdefaults.C $(DEPS) xdefaults.intpro version.h -xpm.o: xpm.C $(DEPS) xpm.intpro -encoding.o: encoding.C $(DEPS) encoding.h -rxvtcolor.o: rxvtcolor.C $(DEPS) -iom.o: iom.C $(DEPS) iom.h - -command.lo: command.C $(DEPS) command.intpro command.h version.h -defaultfont.lo: defaultfont.C $(DEPS) defaultfont.intpro defaultfont.h encoding.h -init.lo: init.C $(DEPS) init.intpro init.h -logging.lo: logging.C $(DEPS) logging.intpro logging.h -main.lo: main.C $(DEPS) main.intpro -menubar.lo: menubar.C $(DEPS) menubar.intpro menubar.h version.h -misc.lo: misc.C $(DEPS) misc.intpro -netdisp.lo: netdisp.C $(DEPS) netdisp.intpro netdisp.h -ptytty.lo: ptytty.C $(DEPS) ptytty.intpro -rxvt.lo: rxvt.C $(DEPS) -screen.lo: screen.C $(DEPS) screen.intpro defaultfont.h -scrollbar.lo: scrollbar.C $(DEPS) scrollbar.intpro -scrollbar-rxvt.lo: scrollbar-rxvt.C $(DEPS) scrollbar-rxvt.intpro -scrollbar-next.lo: scrollbar-next.C $(DEPS) scrollbar-next.intpro -scrollbar-xterm.lo: scrollbar-xterm.C $(DEPS) scrollbar-xterm.intpro -scrollbar-plain.lo: scrollbar-plain.C $(DEPS) scrollbar-plain.intpro -strings.lo: strings.C $(DEPS) strings.intpro -xdefaults.lo: xdefaults.C $(DEPS) xdefaults.intpro version.h -xpm.lo: xpm.C $(DEPS) xpm.intpro -encoding.lo: encoding.C $(DEPS) encoding.h -rxvtcolor.lo: rxvtcolor.C $(DEPS) -iom.lo: iom.C $(DEPS) iom.h +depend: + makedepend -f Makefile.in -I. -I.. -I../libptytty/src -I../libev -Y *.C *.xs >/dev/null 2>&1 +# DO NOT DELETE: nice dependency list follows +background.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h +background.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h +background.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h +background.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h +background.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h +background.o: optinc.h +command.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h +command.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h +command.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h +command.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h +command.o: rxvtperl.h hookinc.h rsinc.h optinc.h version.h command.h +command.o: keyboard.h +encoding.o: ../config.h encoding.h rxvtutil.h ../libptytty/src/ecb.h +encoding.o: ../libptytty/src/estl.h emman.h table/iso8859_1.h +encoding.o: table/iso8859_15.h table/iso8859_2.h table/iso8859_3.h +encoding.o: table/iso8859_4.h table/iso8859_5.h table/iso8859_6.h +encoding.o: table/iso8859_7.h table/iso8859_8.h table/iso8859_9.h +encoding.o: table/iso8859_10.h table/iso8859_11.h table/iso8859_13.h +encoding.o: table/iso8859_14.h table/iso8859_16.h table/koi8_r.h +encoding.o: table/koi8_u.h table/ksc5601_1987_0.h table/big5.h table/gbk_0.h +encoding.o: table/gb2312_1980_0.h table/cns11643_1992_1.h +encoding.o: table/cns11643_1992_2.h table/cns11643_1992_3.h +encoding.o: table/cns11643_1992_4.h table/cns11643_1992_5.h +encoding.o: table/cns11643_1992_6.h table/cns11643_1992_7.h +encoding.o: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h +encoding.o: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h +encoding.o: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h +encoding.o: table/compose.h table/category.h +ev_cpp.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h ../libev/ev.c +ev_cpp.o: ../libev/ev_vars.h ../libev/ev_epoll.c +fdpass_wrapper.o: ../libptytty/src/fdpass.C ../config.h +fdpass_wrapper.o: ../libptytty/src/libptytty.h +init.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h +init.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h +init.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h +init.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h +init.o: hookinc.h rsinc.h optinc.h init.h keyboard.h +keyboard.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h +keyboard.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h +keyboard.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h +keyboard.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h +keyboard.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h +main.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h +main.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h +main.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h +main.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h +main.o: hookinc.h rsinc.h optinc.h init.h keyboard.h +misc.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h +misc.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h +misc.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h +misc.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h +misc.o: hookinc.h rsinc.h optinc.h +ptytty_wrapper.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h +ptytty_wrapper.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h +ptytty_wrapper.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../libev/ev++.h +ptytty_wrapper.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h +ptytty_wrapper.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h +ptytty_wrapper.o: optinc.h ../libptytty/src/logging.C +ptytty_wrapper.o: ../libptytty/src/ptytty.h ../libptytty/src/ptytty_conf.h +ptytty_wrapper.o: ../libptytty/src/proxy.C ../libptytty/src/ptytty.C +rxvt.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h +rxvt.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h +rxvt.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h +rxvt.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h +rxvt.o: hookinc.h rsinc.h optinc.h +rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h ../libptytty/src/ecb.h +rxvtc.o: ../libptytty/src/estl.h emman.h ../libptytty/src/libptytty.h +rxvtd.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h +rxvtd.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h +rxvtd.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h +rxvtd.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h +rxvtd.o: hookinc.h rsinc.h optinc.h rxvtdaemon.h +rxvtdaemon.o: rxvtdaemon.h rxvtutil.h ../libptytty/src/ecb.h +rxvtdaemon.o: ../libptytty/src/estl.h emman.h +rxvtfont.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h +rxvtfont.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h +rxvtfont.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h +rxvtfont.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h +rxvtfont.o: rxvtperl.h hookinc.h rsinc.h optinc.h table/linedraw.h +rxvtimg.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h +rxvtimg.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h +rxvtimg.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h +rxvtimg.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h +rxvtimg.o: rxvtperl.h hookinc.h rsinc.h optinc.h +rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h +rxvtperl.o: rxvt.h feature.h ../libptytty/src/ecb.h encoding.h rxvtutil.h +rxvtperl.o: ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h +rxvtperl.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h +rxvtperl.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h perlxsi.c +rxvtperl.o: iom_perl.h +rxvttoolkit.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h +rxvttoolkit.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h +rxvttoolkit.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h +rxvttoolkit.o: ../libev/ev.h callback.h rxvtimg.h scrollbar.h +rxvttoolkit.o: ../libptytty/src/libptytty.h rxvtperl.h hookinc.h rsinc.h +rxvttoolkit.o: optinc.h +rxvtutil.o: rxvtutil.h ../libptytty/src/ecb.h ../libptytty/src/estl.h emman.h +rxvtutil.o: emman.c +screen.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h +screen.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h +screen.o: ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h callback.h +screen.o: rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h +screen.o: hookinc.h rsinc.h optinc.h +scrollbar-next.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h +scrollbar-next.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h +scrollbar-next.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h +scrollbar-next.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h +scrollbar-next.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h +scrollbar-next.o: hookinc.h rsinc.h optinc.h +scrollbar-plain.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h +scrollbar-plain.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h +scrollbar-plain.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h +scrollbar-plain.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h +scrollbar-plain.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h +scrollbar-plain.o: hookinc.h rsinc.h optinc.h +scrollbar-rxvt.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h +scrollbar-rxvt.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h +scrollbar-rxvt.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h +scrollbar-rxvt.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h +scrollbar-rxvt.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h +scrollbar-rxvt.o: hookinc.h rsinc.h optinc.h +scrollbar-xterm.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h +scrollbar-xterm.o: encoding.h rxvtutil.h ../libptytty/src/estl.h emman.h +scrollbar-xterm.o: rxvtfont.h rxvttoolkit.h ev_cpp.h ../config.h +scrollbar-xterm.o: ../libev/ev++.h ../libev/ev.h callback.h rxvtimg.h +scrollbar-xterm.o: scrollbar.h ../libptytty/src/libptytty.h rxvtperl.h +scrollbar-xterm.o: hookinc.h rsinc.h optinc.h +scrollbar.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h +scrollbar.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h +scrollbar.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h +scrollbar.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h +scrollbar.o: rxvtperl.h hookinc.h rsinc.h optinc.h +xdefaults.o: ../config.h rxvt.h feature.h ../libptytty/src/ecb.h encoding.h +xdefaults.o: rxvtutil.h ../libptytty/src/estl.h emman.h rxvtfont.h +xdefaults.o: rxvttoolkit.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h +xdefaults.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h +xdefaults.o: rxvtperl.h hookinc.h rsinc.h optinc.h version.h keyboard.h +rxvtperl.o: ../config.h ev_cpp.h ../config.h ../libev/ev++.h ../libev/ev.h +rxvtperl.o: rxvt.h feature.h ../libptytty/src/ecb.h encoding.h rxvtutil.h +rxvtperl.o: ../libptytty/src/estl.h emman.h rxvtfont.h rxvttoolkit.h +rxvtperl.o: callback.h rxvtimg.h scrollbar.h ../libptytty/src/libptytty.h +rxvtperl.o: rxvtperl.h hookinc.h rsinc.h optinc.h keyboard.h perlxsi.c +rxvtperl.o: iom_perl.h