diff options
author | welch <welch> | 2000-07-23 04:47:57 (GMT) |
---|---|---|
committer | welch <welch> | 2000-07-23 04:47:57 (GMT) |
commit | 2d72d5f143068a60caa384f10d21b5adc4b3574e (patch) | |
tree | c33691c33643b8a2f901305cc791baa6af17a442 | |
parent | 67a4ba9f86a96e2741e47469ae20963e87cc956d (diff) | |
download | tk-2d72d5f143068a60caa384f10d21b5adc4b3574e.zip tk-2d72d5f143068a60caa384f10d21b5adc4b3574e.tar.gz tk-2d72d5f143068a60caa384f10d21b5adc4b3574e.tar.bz2 |
Installing more .h files for TclPro
-rw-r--r-- | unix/Makefile.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 6e04186..874277e 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.45 2000/04/25 21:00:07 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.45.2.1 2000/07/23 04:47:57 welch Exp $ # Current Tk version; used in various names. @@ -346,6 +346,11 @@ HDRS = bltList.h \ default.h ks_names.h tkPatch.h tk.h tkButton.h tkCanvas.h tkInt.h \ tkPort.h tkScrollbar.h tkText.h +INSTALL_HDRS = $(GENERIC_DIR)/tk.h \ + $(GENERIC_DIR)/tkInt.h \ + $(GENERIC_DIR)/tkDecls.h \ + $(GENERIC_DIR)/tkIntXlibDecls.h + DEMOPROGS = browse hello ixset rmt rolodex square tcolor timer widget all: binaries libraries doc @@ -484,7 +489,7 @@ install-libraries: chmod +x $(UNIX_DIR)/install-sh; \ fi @echo "Installing header files"; - @for i in $(GENERIC_DIR)/tk.h $(GENERIC_DIR)/tkDecls.h ; \ + @for i in $(INSTALL_HDRS) ; \ do \ $(INSTALL_DATA) $$i $(INCLUDE_INSTALL_DIR); \ done; |