summaryrefslogtreecommitdiffstats
path: root/tkimg/win/install-lib.vc
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2019-03-20 17:29:30 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2019-03-20 17:29:30 (GMT)
commitcfef685ad45bc8f98a2d59fba75ba9bc6e06496d (patch)
tree066005da150adf4bf7892796647154a49d5ea23c /tkimg/win/install-lib.vc
parentc31bd7553b6efd2407fc521dc14aec1936e3cbf0 (diff)
downloadblt-cfef685ad45bc8f98a2d59fba75ba9bc6e06496d.zip
blt-cfef685ad45bc8f98a2d59fba75ba9bc6e06496d.tar.gz
blt-cfef685ad45bc8f98a2d59fba75ba9bc6e06496d.tar.bz2
upgrade tkimg 1.4.9
Diffstat (limited to 'tkimg/win/install-lib.vc')
-rw-r--r--tkimg/win/install-lib.vc35
1 files changed, 0 insertions, 35 deletions
diff --git a/tkimg/win/install-lib.vc b/tkimg/win/install-lib.vc
deleted file mode 100644
index 9ccccd0..0000000
--- a/tkimg/win/install-lib.vc
+++ /dev/null
@@ -1,35 +0,0 @@
-# Common include file for the supporting libraries like libjpeg.
-
-# We do not want to use the built-in default install target as we
-# need a custom one as described below.
-DISABLE_TARGET_install = 1
-!include "$(_RULESDIR)\targets.vc"
-
-# Special install targets to install all DLL's into the main img directory
-# When a component is build by itself, e.g. png, it will install into the
-# directory named after the component. When installed through the "master"
-# Img makefile, it installs in the Img directory. The Following takes
-# care of the details.
-!ifdef TKIMG_INSTALL_SUBDIR
-IMG_INSTALL_DIR = $(_INSTALLDIR)\$(TKIMG_INSTALL_SUBDIR)
-!else
-IMG_INSTALL_DIR = $(SCRIPT_INSTALL_DIR)
-!endif
-install: $(OUT_DIR)\pkgIndex.tcl
- @echo Installing binaries to '$(IMG_INSTALL_DIR)'
- @if not exist "$(IMG_INSTALL_DIR)" mkdir "$(IMG_INSTALL_DIR)"
- @$(CPY) $(PRJLIB) "$(IMG_INSTALL_DIR)" >NUL
- @echo Installing stubs library to '$(IMG_INSTALL_DIR)'
- @if not exist "$(IMG_INSTALL_DIR)" mkdir "$(IMG_INSTALL_DIR)"
- @$(CPY) $(PRJSTUBLIB) "$(IMG_INSTALL_DIR)" >NUL
- @echo Installing libraries to '$(IMG_INSTALL_DIR)'
- @if exist $(LIBDIR) $(CPY) $(LIBDIR)\*.tcl "$(IMG_INSTALL_DIR)"
-!ifdef TKIMG_INSTALL_SUBDIR
- @echo Adding package index to '$(IMG_INSTALL_DIR)\pkgIndex.tcl'
- @type $(OUT_DIR)\pkgIndex.tcl >> "$(IMG_INSTALL_DIR)\pkgIndex.tcl"
-!else
- @echo Installing package index in '$(IMG_INSTALL_DIR)'
- @$(CPY) $(OUT_DIR)\pkgIndex.tcl $(IMG_INSTALL_DIR)
-!endif
-
-pkgindex: default-pkgindex \ No newline at end of file