@@ -1,8 +1,8 @@ # -*- make -*- # FILE: "/diska/home/joze/src/tclreadline/Makefile.in" -# LAST MODIFICATION: "Mon Aug 30 14:13:02 1999 (joze)" +# LAST MODIFICATION: "Wed Sep 8 18:22:32 1999 (joze)" # (C) 1998, 1999 by Johannes Zellner, # $Id$ # --- # # tclreadline -- gnu readline for tcl @@ -155,11 +155,11 @@ -I$(TCL_INCLUDE_DIR) -I$(READLINE_INCLUDE_DIR) OBJS = tclreadline.o CSRCS = $(TOP_DIR)/tclreadline.c -TCLFILES = tclreadlineInit.tcl tclreadlineSetup.tcl +TCLFILES = tclreadlineInit.tcl tclreadlineSetup.tcl tclreadlineCompleter.tcl SOURCES = \ GPL \ Makefile.in \ README \ @@ -170,11 +170,12 @@ tclreadline.c \ tclreadline.h.in \ tclreadline.n.in \ tclreadlineConfig.sh.in \ tclreadlineInit.tcl.in \ - tclreadlineSetup.tcl.in + tclreadlineSetup.tcl.in \ + tclreadlineCompleter.tcl MISC = TODO AUXILIARY = \ aux/config.guess \ @@ -210,17 +211,21 @@ $(LIBRARY_INSTALL_DIR)/$(TCLREADLINE_LIB_FILE) @(cd $(LIBRARY_INSTALL_DIR); $(RANLIB) $(TCLREADLINE_LIB_FILE)) chmod 555 $(LIBRARY_INSTALL_DIR)/$(TCLREADLINE_LIB_FILE) -install-libraries: tclreadlineInit.tcl tclreadlineSetup.tcl pkgIndex.tcl \ - tclreadlineConfig.sh +install-libraries: tclreadlineInit.tcl tclreadlineSetup.tcl \ + tclreadlineCompleter.tcl pkgIndex.tcl tclreadlineConfig.sh @$(MKINSTALLDIRS) $(LIBRARY_INSTALL_DIR) - $(INSTALL_DATA) tclreadlineInit.tcl $(LIBRARY_INSTALL_DIR) - $(INSTALL_DATA) tclreadlineSetup.tcl $(LIBRARY_INSTALL_DIR) - $(INSTALL_DATA) pkgIndex.tcl $(LIBRARY_INSTALL_DIR) - $(INSTALL_DATA) tclreadlineConfig.sh $(LIBRARY_INSTALL_DIR) + for f in \ + tclreadlineInit.tcl \ + tclreadlineSetup.tcl \ + tclreadlineCompleter.tcl \ + pkgIndex.tcl \ + tclreadlineConfig.sh; do \ + $(INSTALL_DATA) $f $(LIBRARY_INSTALL_DIR) \ + done FORCE: $(MANN_INSTALL_DIR)/$(MAN): FORCE - $(INSTALL_DATA) $(srcdir)/$(MAN) $@ && chmod 644 $@