diff options
author | welch <welch@noemail.net> | 2000-07-23 04:47:56 (GMT) |
---|---|---|
committer | welch <welch@noemail.net> | 2000-07-23 04:47:56 (GMT) |
commit | b77e46dd2dd4fdacd9305d33e75ba0eed6a9bae8 (patch) | |
tree | c33691c33643b8a2f901305cc791baa6af17a442 | |
parent | 1566d5ba9997d40888a62212293c8a224a6d3a14 (diff) | |
download | tk-b77e46dd2dd4fdacd9305d33e75ba0eed6a9bae8.zip tk-b77e46dd2dd4fdacd9305d33e75ba0eed6a9bae8.tar.gz tk-b77e46dd2dd4fdacd9305d33e75ba0eed6a9bae8.tar.bz2 |
Installing more .h files for TclPro
FossilOrigin-Name: 600cde9992eabeac1eaff44fdba84a9c91822f54
-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; |