*** empty log message ***
[dana/urxvt.git] / src / Makefile.in
index a428c3f..af39840 100644 (file)
@@ -1,7 +1,37 @@
-# $Id: Makefile.in,v 1.10 2004-01-31 04:12:10 pcg Exp $
-@MCOMMON@
-
-LINT = lint -DNARROWPROTO=1 $(XINC) -chapbxz
+DATE=@DATE@
+VERSION=@VERSION@
+RXVTNAME=@RXVTNAME@
+SHELL = /bin/sh
+prefix = @prefix@
+exec_prefix = @exec_prefix@
+bindir = @bindir@
+libdir = @libdir@
+includedir = @includedir@
+CC = @CC@
+CXX = @CXX@
+CPP = @CPP@
+MV = @MV@
+RM = @RM@
+RMF = @RM@ -f
+CP = @CP@
+LN = @LN@
+SED = @SED@
+ECHO = @ECHO@
+PERL = @PERL@
+INSTALL = @INSTALL@
+INSTALL_PROGRAM = @INSTALL@ -m 755
+INSTALL_DATA = @INSTALL@ -m 644
+CXXFLAGS = @CXXFLAGS@ 
+CPPFLAGS = @CPPFLAGS@ @XPM_CPPFLAGS@
+LDFLAGS = @LDFLAGS@
+DEFS = @DEFS@
+LIBS = @LIBS@
+DINCLUDE = @DINCLUDE@
+DLIB = @DLIB@
+XINC = @X_CFLAGS@ @XPM_CFLAGS@
+XLIB = @X_LIBS@ @XPM_LIBS@ -lX11 @X_EXTRA_LIBS@
+COMPILE = $(CXX) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CXXFLAGS) $(DEBUG) $(DINCLUDE) $(XINC) -I$(basedir) -I$(srcdir) -I.
+LINK = @LINKER@ $(LDFLAGS)
 
 srcdir =       @srcdir@
 VPATH =                @srcdir@
@@ -10,131 +40,80 @@ VPATH =            @srcdir@
 top_builddir = ..
 basedir = ..
 thisdir = src
-MKDIR = @top_srcdir@/autoconf/mkinstalldirs
-
-SUPLIB = -fno-exceptions -lsupc++ # TODO: only for g++
 
 # 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
+#      -DDEBUG_CMD -DDEBUG_MAIN -DDEBUG_RESOURCES
+#      -DDEBUG_SEARCH_PATH -DDEBUG_SIZE -DDEBUG_TTY -DDEBUG_TTYMODE
+#      -DDEBUG_KEYBOARD -DDEBUG_STRICT
 DEBUG=-DDEBUG_STRICT @DEBUG@
 
 first_rule: all
 dummy:
 
-LIBSRCS = command.C defaultfont.C grkelot.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 grkelot.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 grkelot.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 grkelot.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
+COMMON = \
+        command.o rxvtfont.o init.o logging.o main.o misc.o netdisp.o      \
+       ptytty.o screen.o scrollbar.o scrollbar-next.o scrollbar-rxvt.o    \
+       scrollbar-xterm.o scrollbar-plain.o xdefaults.o xpm.o encoding.o   \
+       rxvttoolkit.o rxvtutil.o iom.o keyboard.o fdpass.o @PERL_O@
 
-LIBVERSION = @LIBVERSION@
-INSTALL_LIBRXVT = @INSTALL_LIBRXVT@
+COMMON_DAEMON = rxvtdaemon.o
 
 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 grkelot.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 grkelot.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 .protos
 
 #
 # 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 .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.lo:
+#      $(LIBTOOL) --mode=compile $(COMPILE) -c $<
+#
+#.s.lo:
+#      $(LIBTOOL) --mode=compile $(COMPILE) -c $<
+#
+#.S.lo:
+#      $(LIBTOOL) --mode=compile $(COMPILE) -c $<
 
-.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) $(SUPLIB) -o $@
+rxvt: rxvt.o $(COMMON)
+       $(LINK) -o $@ $^ $(LIBS) $(XLIB) $(DLIB) @PERLLIB@
+#      $(LIBTOOL) --mode=link $(LINK) rxvt.o librxvt.la $(LIBS) $(XLIB) $(DLIB) -o $@
 
-rxvtd: version.h rxvtd.o librxvt.la rxvtdaemon.o
-       $(LIBTOOL) --mode=link $(LINK) rxvtd.o rxvtdaemon.o librxvt.la $(LIBS) $(XLIB) $(DLIB) $(SUPLIB) -o $@
+rxvtd: rxvtd.o $(COMMON) $(COMMON_DAEMON)
+       $(LINK) -o $@ $^ $(LIBS) $(XLIB) $(DLIB) @PERLLIB@
+#      $(LIBTOOL) --mode=link $(LINK) rxvtd.o rxvtdaemon.o librxvt.la $(LIBS) $(XLIB) $(DLIB) -o $@
 
-rxvtc: version.h rxvtc.o rxvtdaemon.o
-       $(LIBTOOL) --mode=link $(LINK) rxvtc.o rxvtdaemon.o $(LIBS) $(DLIB) $(SUPLIB) -o $@
+rxvtc: rxvtc.o $(COMMON_DAEMON) fdpass.o
+       $(LINK) -o $@ $^ $(LIBS) $(DLIB)
+#      $(LIBTOOL) --mode=link $(LINK) rxvtc.o rxvtdaemon.o $(LIBS) $(DLIB) -o $@
 
-.protos: $(EXTPROS)
-       @$(RMF) .protos
-       date >.protos
+#librxvt.la: $(LIBOBJS)
+#      $(LIBTOOL) --mode=link $(LINK) -rpath $(libdir) -version-info $(LIBVERSION) $(LIBOBJS) $(LIBS) -o $@
 
-librxvt.la: $(LIBOBJS)
-       $(LIBTOOL) --mode=link $(LINK) -rpath $(libdir) -version-info $(LIBVERSION) $(LIBOBJS) $(LIBS) $(SUPLIB) -o $@
 #-------------------------------------------------------------------------
-tags: $(SRCS) $(HDRS) $(EXTRAHDRS)
-       ctags $(SRCS) $(HDRS) $(EXTRAHDRS)
 
-allbin: .protos rxvt rxvtd rxvtc
+tags:
+       ctags *.h *.C
+
+allbin: rxvt rxvtd rxvtc
 
 alldoc:
 
 clean:
-       $(RMF) rxvt rxvtc rxvtd core a.out *.o *.lo *.bak *~ *.intpro *.extpro .libs/* librxvt.la tmpproto .protos *.tmp
+       $(RMF) rxvt rxvtc rxvtd perlxsi.c rxvtperl.C
+       $(RMF) *.o *.lo .libs/* librxvt.la tmpproto *.tmp
 
 realclean: clean
        $(RMF) tags librxvt.h
@@ -142,101 +121,214 @@ realclean: clean
 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
-
-distdirs:
-       mkdir $(basedir)/../$(VERNAME)/$(thisdir)
-
-distcopy: .protos $(INTPROS)
-       $(CP) -p $(DIST) $(basedir)/../$(VERNAME)/$(thisdir)
-
-# -----------------------------------------------------------------------
-# DO NOT DELETE: nice dependency list follows
-#
+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_DATA) urxvt.pm $(DESTDIR)$(libdir)/urxvt/urxvt.pm
+@IF_PERL@      for ext in perl/*; do test -f "$$ext" && $(INSTALL_DATA) "$$ext" $(DESTDIR)$(libdir)/urxvt/"$$ext"; done
+
+install: allbin alldoc install-perl
+       $(INSTALL) -d $(DESTDIR)$(bindir)
+       $(INSTALL_PROGRAM) rxvt  $(RXVT_BINNAME)
+       $(INSTALL_PROGRAM) rxvtc $(RXVTC_BINNAME)
+       $(INSTALL_PROGRAM) rxvtd $(RXVTD_BINNAME)
+
+perlxsi.c: Makefile
+       $(PERL) -MExtUtils::Embed -e xsinit -- -std urxvt
 
-defaultfont.h: encoding.h rxvtstl.h
-rxvtlib.h: rxvtcolor.h defaultfont.h
-rxvtdaemon.o:       rxvtdaemon.C       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
-grkelot.o:          grkelot.C   $(DEPS) grkelot.intpro grkelot.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
-grkelot.lo:         grkelot.C   $(DEPS) grkelot.intpro grkelot.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
+rxvtperl.C: rxvtperl.xs typemap
+       $(PERL) @PERLPRIVLIBEXP@/ExtUtils/xsubpp -C++ -typemap @PERLPRIVLIBEXP@/ExtUtils/typemap -typemap typemap -prototypes $< >$@
 
+rxvtperl.o: rxvtperl.C perlxsi.c
+       $(COMPILE) @PERLFLAGS@ -DLIBDIR="\"$(libdir)/urxvt\"" -c $<
+
+depend:
+       makedepend -f Makefile.in -I. -Y *.C >/dev/null 2>&1
+       makedepend -f Makefile.in -I. -Y *.C -a -o .lo >/dev/null 2>&1
+
+# DO NOT DELETE: nice dependency list follows
 
+command.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+command.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+command.o: salloc.h rxvtperl.h hookinc.h rsinc.h version.h command.h
+command.o: keyboard.h
+encoding.o: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
+encoding.o: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
+encoding.o: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
+encoding.o: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
+encoding.o: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
+encoding.o: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
+encoding.o: 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
+fdpass.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+fdpass.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+fdpass.o: salloc.h rxvtperl.h hookinc.h rsinc.h fdpass.h
+init.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
+init.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
+init.o: rxvtperl.h hookinc.h rsinc.h init.h
+iom.o: iom.h iom_conf.h rxvtutil.h callback.h
+keyboard.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+keyboard.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+keyboard.o: salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h command.h
+logging.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+logging.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+logging.o: salloc.h rxvtperl.h hookinc.h rsinc.h ptytty.h
+main.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
+main.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
+main.o: rxvtperl.h hookinc.h rsinc.h keyboard.h
+misc.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
+misc.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
+misc.o: rxvtperl.h hookinc.h rsinc.h
+netdisp.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+netdisp.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+netdisp.o: salloc.h rxvtperl.h hookinc.h rsinc.h
+ptytty.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+ptytty.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+ptytty.o: salloc.h rxvtperl.h hookinc.h rsinc.h fdpass.h ptytty.h
+rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
+rxvt.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
+rxvt.o: rxvtperl.h hookinc.h rsinc.h
+rxvtc.o: ../config.h rxvtdaemon.h rxvtutil.h fdpass.h rxvt.h rxvtlib.h
+rxvtc.o: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
+rxvtc.o: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
+rxvtd.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+rxvtd.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+rxvtd.o: salloc.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h fdpass.h
+rxvtdaemon.o: rxvtdaemon.h rxvtutil.h
+rxvtfont.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+rxvtfont.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+rxvtfont.o: salloc.h rxvtperl.h hookinc.h rsinc.h table/linedraw.h
+rxvtperl.o: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
+rxvtperl.o: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
+rxvtperl.o: salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h perlxsi.c
+rxvttoolkit.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+rxvttoolkit.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
+rxvttoolkit.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
+rxvtutil.o: rxvtutil.h
+salloc.o: salloc.h
+screen.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+screen.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+screen.o: salloc.h rxvtperl.h hookinc.h rsinc.h salloc.C
+scrollbar-next.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+scrollbar-next.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
+scrollbar-next.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
+scrollbar-plain.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+scrollbar-plain.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
+scrollbar-plain.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
+scrollbar-rxvt.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+scrollbar-rxvt.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
+scrollbar-rxvt.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
+scrollbar-xterm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+scrollbar-xterm.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
+scrollbar-xterm.o: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
+scrollbar.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+scrollbar.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+scrollbar.o: salloc.h rxvtperl.h hookinc.h rsinc.h
+xdefaults.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+xdefaults.o: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+xdefaults.o: salloc.h rxvtperl.h hookinc.h rsinc.h version.h keyboard.h
+xpm.o: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
+xpm.o: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
+xpm.o: rxvtperl.h hookinc.h rsinc.h
+
+command.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+command.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+command.lo: salloc.h rxvtperl.h hookinc.h rsinc.h version.h command.h
+command.lo: keyboard.h
+encoding.lo: ../config.h encoding.h table/iso8859_1.h table/iso8859_15.h
+encoding.lo: table/iso8859_2.h table/iso8859_3.h table/iso8859_4.h
+encoding.lo: table/iso8859_5.h table/iso8859_6.h table/iso8859_7.h
+encoding.lo: table/iso8859_8.h table/iso8859_9.h table/iso8859_10.h
+encoding.lo: table/iso8859_11.h table/iso8859_13.h table/iso8859_14.h
+encoding.lo: table/iso8859_16.h table/koi8_r.h table/koi8_u.h
+encoding.lo: table/ksc5601_1987_0.h table/big5.h table/gbk_0.h
+encoding.lo: table/gb2312_1980_0.h table/cns11643_1992_1.h
+encoding.lo: table/cns11643_1992_2.h table/cns11643_1992_3.h
+encoding.lo: table/cns11643_1992_4.h table/cns11643_1992_5.h
+encoding.lo: table/cns11643_1992_6.h table/cns11643_1992_7.h
+encoding.lo: table/cns11643_1992_f.h table/big5_ext.h table/big5_plus.h
+encoding.lo: table/viscii.h table/jis0201_1976_0.h table/jis0208_1990_0.h
+encoding.lo: table/jis0212_1990_0.h table/jis0213_1.h table/jis0213_2.h
+encoding.lo: table/compose.h table/category.h
+fdpass.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+fdpass.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+fdpass.lo: salloc.h rxvtperl.h hookinc.h rsinc.h fdpass.h
+init.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+init.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+init.lo: salloc.h rxvtperl.h hookinc.h rsinc.h init.h
+iom.lo: iom.h iom_conf.h rxvtutil.h callback.h
+keyboard.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+keyboard.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+keyboard.lo: salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h command.h
+logging.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+logging.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+logging.lo: salloc.h rxvtperl.h hookinc.h rsinc.h ptytty.h
+main.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+main.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+main.lo: salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h
+misc.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+misc.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+misc.lo: salloc.h rxvtperl.h hookinc.h rsinc.h
+netdisp.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+netdisp.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+netdisp.lo: salloc.h rxvtperl.h hookinc.h rsinc.h
+ptytty.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+ptytty.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+ptytty.lo: salloc.h rxvtperl.h hookinc.h rsinc.h fdpass.h ptytty.h
+rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+rxvt.lo: salloc.h rxvtperl.h hookinc.h rsinc.h
+rxvtc.lo: ../config.h rxvtdaemon.h rxvtutil.h fdpass.h rxvt.h rxvtlib.h
+rxvtc.lo: optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h iom.h
+rxvtc.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
+rxvtd.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+rxvtd.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+rxvtd.lo: salloc.h rxvtperl.h hookinc.h rsinc.h rxvtdaemon.h fdpass.h
+rxvtdaemon.lo: rxvtdaemon.h rxvtutil.h
+rxvtfont.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+rxvtfont.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+rxvtfont.lo: salloc.h rxvtperl.h hookinc.h rsinc.h table/linedraw.h
+rxvtperl.lo: ../config.h iom.h iom_conf.h rxvtutil.h callback.h rxvt.h
+rxvtperl.lo: rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h rxvttoolkit.h
+rxvtperl.lo: salloc.h rxvtperl.h hookinc.h rsinc.h keyboard.h perlxsi.c
+rxvttoolkit.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+rxvttoolkit.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
+rxvttoolkit.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
+rxvtutil.lo: rxvtutil.h
+salloc.lo: salloc.h
+screen.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+screen.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+screen.lo: salloc.h rxvtperl.h hookinc.h rsinc.h salloc.C
+scrollbar-next.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+scrollbar-next.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
+scrollbar-next.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
+scrollbar-plain.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
+scrollbar-plain.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
+scrollbar-plain.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h
+scrollbar-plain.lo: rsinc.h
+scrollbar-rxvt.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+scrollbar-rxvt.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h
+scrollbar-rxvt.lo: callback.h salloc.h rxvtperl.h hookinc.h rsinc.h
+scrollbar-xterm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h
+scrollbar-xterm.lo: encoding.h rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h
+scrollbar-xterm.lo: iom_conf.h callback.h salloc.h rxvtperl.h hookinc.h
+scrollbar-xterm.lo: rsinc.h
+scrollbar.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+scrollbar.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+scrollbar.lo: salloc.h rxvtperl.h hookinc.h rsinc.h
+xdefaults.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h
+xdefaults.lo: rxvtfont.h rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h
+xdefaults.lo: salloc.h rxvtperl.h hookinc.h rsinc.h version.h keyboard.h
+xpm.lo: ../config.h rxvt.h rxvtlib.h optinc.h feature.h encoding.h rxvtfont.h
+xpm.lo: rxvtutil.h rxvttoolkit.h iom.h iom_conf.h callback.h salloc.h
+xpm.lo: rxvtperl.h hookinc.h rsinc.h