diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2019-11-27 11:01:38 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2019-11-27 11:01:38 (GMT) |
commit | d9f8a230026664cc73add358b6c5985c7700af89 (patch) | |
tree | a9912fb4755e8d043a65eeac63cfb4b2abaa875e /win/makefile.vc | |
parent | d8a1ef082777292ede109a0ed919d8174d6929dd (diff) | |
download | tcl-d9f8a230026664cc73add358b6c5985c7700af89.zip tcl-d9f8a230026664cc73add358b6c5985c7700af89.tar.gz tcl-d9f8a230026664cc73add358b6c5985c7700af89.tar.bz2 |
Proposed Windows installation code for cookiejar package
Diffstat (limited to 'win/makefile.vc')
-rw-r--r-- | win/makefile.vc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index b943ed8..12d8751 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -154,6 +154,9 @@ VERSION = $(TCL_MAJOR_VERSION)$(TCL_MINOR_VERSION) !if [echo PKG_HTTP_VER = \>> versions.vc] \
&& [nmakehlp -V ..\library\http\pkgIndex.tcl http >> versions.vc]
!endif
+!if [echo PKG_COOKIEJAR_VER = \>> versions.vc] \
+ && [nmakehlp -V ..\library\cookiejar\pkgIndex.tcl cookiejar >> versions.vc]
+!endif
!if [echo PKG_TCLTEST_VER = \>> versions.vc] \
&& [nmakehlp -V ..\library\tcltest\pkgIndex.tcl tcltest >> versions.vc]
!endif
@@ -932,6 +935,11 @@ install-libraries: tclConfig tcl-nmake install-msgs install-tzdata @echo Installing package opt0.4 files to $(SCRIPT_INSTALL_DIR)/opt0.4/
@$(CPY) "$(ROOT)\library\opt0.4\*.tcl" \
"$(SCRIPT_INSTALL_DIR)\opt0.4\"
+ @echo Installing package cookiejar $(PKG_COOKIEJAR_VER) directory
+ @$(CPY) "$(ROOT)\library\cookiejar\*.tcl" \
+ "$(SCRIPT_INSTALL_DIR)\cookiejar$(PKG_COOKIEJAR_VER)\"
+ @$(CPY) "$(ROOT)\library\cookiejar\*.txt.gz" \
+ "$(SCRIPT_INSTALL_DIR)\cookiejar$(PKG_COOKIEJAR_VER)\"
@echo Installing package http $(PKG_HTTP_VER) as a Tcl Module
@$(COPY) "$(ROOT)\library\http\http.tcl" \
"$(SCRIPT_INSTALL_DIR)\..\tcl8\8.6\http-$(PKG_HTTP_VER).tm"
|