summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2017-07-06 16:16:14 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2017-07-06 16:16:14 (GMT)
commit2e247af5ad994fb192d72a6ecf6aa1c7ec897c72 (patch)
treea0c3568c244f17db604b1f9a9e262e148d6bf57f
parent9a01b0d78f888a16206af097666ce42564e52096 (diff)
downloadblt-2e247af5ad994fb192d72a6ecf6aa1c7ec897c72.zip
blt-2e247af5ad994fb192d72a6ecf6aa1c7ec897c72.tar.gz
blt-2e247af5ad994fb192d72a6ecf6aa1c7ec897c72.tar.bz2
fix distclean macos
-rw-r--r--ds9/doc/release/r7.6.html2
-rw-r--r--macos/Makefile.in24
-rw-r--r--make.include28
-rw-r--r--unix/Makefile.in24
-rw-r--r--win/Makefile.in25
5 files changed, 73 insertions, 30 deletions
diff --git a/ds9/doc/release/r7.6.html b/ds9/doc/release/r7.6.html
index 58b048f..96c603e 100644
--- a/ds9/doc/release/r7.6.html
+++ b/ds9/doc/release/r7.6.html
@@ -104,6 +104,8 @@
<li><tt>06.28.2017 TKHTML1: Fixed a problem with a compiler issue with va_args and 64bit.</tt></li>
<li><tt>06.29.2017 TKHTML1: Properly init all memory allocation.</tt></li>
<li><tt><b>07.04.2017 RELEASE version 7.6b3</b></tt></li>
+ <li><tt>07.06.2017 XPA: set XPA_CONNECTION_TIMEOUT to 3 secs.</tt></li>
+ <li><tt>07.06.2017 GUI: set title to rootname (removes any extension).</tt></li>
</ol>
</ol>
</body>
diff --git a/macos/Makefile.in b/macos/Makefile.in
index f4293c7..c6ab04d 100644
--- a/macos/Makefile.in
+++ b/macos/Makefile.in
@@ -121,7 +121,17 @@ tkmacosx/Makefile :
#--------------------------clean
-.PHONY : tkosclean
+.PHONY : tclclean tkclean tkosclean
+
+tclclean :
+ @echo ""
+ @echo "*** tclclean ***"
+ $(MAKE) -C tcl$(TCL_VERSION)/macosx clean
+
+tkclean :
+ @echo ""
+ @echo "*** $@ ***"
+ $(MAKE) -C tk$(TCL_VERSION)/macosx clean
tkosclean :
@echo ""
@@ -130,7 +140,17 @@ tkosclean :
#--------------------------distclean
-.PHONY : tkosdistclean
+.PHONY : tcldistclean tkdistclean tkosdistclean
+
+tcldistclean :
+ @echo ""
+ @echo "*** $@ ***"
+ $(MAKE) -C tcl$(TCL_VERSION)/macosx distclean
+
+tkdistclean :
+ @echo ""
+ @echo "*** $@ ***"
+ $(MAKE) -C tk$(TCL_VERSION)/macosx distclean
tkosdistclean :
@echo ""
diff --git a/make.include b/make.include
index a5302b0..1a6597c 100644
--- a/make.include
+++ b/make.include
@@ -452,9 +452,9 @@ scrub :
.PHONY : clean
.PHONY : dirsclean ds9clean localclean
-.PHONY : tclclean tclcheckdnsclean tcliisclean tclsignalclean
+.PHONY : tclcheckdnsclean tcliisclean tclsignalclean
.PHONY : tclxmlclean tclzvfsclean tlsclean
-.PHONY : tkclean tkbltclean tkconclean tkhtml1clean tkimgclean
+.PHONY : tkbltclean tkconclean tkhtml1clean tkimgclean
.PHONY : tkmpegclean tksaoclean astclean funtoolsclean tktableclean xpaclean
clean : tclclean tkclean \
@@ -480,11 +480,6 @@ localclean :
@echo "*** $@ ***"
-rm -f core *~ *#
-tclclean :
- @echo ""
- @echo "*** tclclean ***"
- $(MAKE) -C tcl$(TCL_VERSION)/$(OS) clean
-
tclcheckdnsclean :
@echo ""
@echo "*** $@ ***"
@@ -515,11 +510,6 @@ tlsclean:
@echo "*** $@ ***"
$(MAKE) -C tls clean
-tkclean :
- @echo ""
- @echo "*** $@ ***"
- $(MAKE) -C tk$(TCL_VERSION)/$(OS) clean
-
tkbltclean:
@echo ""
@echo "*** $@ ***"
@@ -573,9 +563,9 @@ xpaclean :
#-------------------------- distclean
.PHONY : dirsdistclean ds9distclean localdistclean
-.PHONY : tcldistclean tclcheckdnsdistclean tcliisdistclean tclsignaldistclean
+.PHONY : tclcheckdnsdistclean tcliisdistclean tclsignaldistclean
.PHONY : tclxmldistclean tclzvfsdistclean tlsdistclean
-.PHONY : tkdistclean tkbltdistclean tkcondistclean tkhtml1distclean
+.PHONY : tkbltdistclean tkcondistclean tkhtml1distclean
.PHONY : tkimgdistclean tkmpegdistclean
.PHONY : tksaodistclean astdistclean funtoolsdistclean
.PHONY : tktabledistclean xpadistclean
@@ -604,11 +594,6 @@ localdistclean :
-rm -f core *~ *#
-rm -f config.log config.status config.cache Makefile
-tcldistclean :
- @echo ""
- @echo "*** $@ ***"
- $(MAKE) -C tcl$(TCL_VERSION)/$(OS) distclean
-
tclcheckdnsdistclean :
@echo ""
@echo "*** $@ ***"
@@ -639,11 +624,6 @@ tlsdistclean:
@echo "*** $@ ***"
$(MAKE) -C tls distclean
-tkdistclean :
- @echo ""
- @echo "*** $@ ***"
- $(MAKE) -C tk$(TCL_VERSION)/$(OS) distclean
-
tkcondistclean:
@echo ""
@echo "*** $@ ***"
diff --git a/unix/Makefile.in b/unix/Makefile.in
index 86195f9..9d3f655 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -63,7 +63,17 @@ tk$(TCL_VERSION)/unix/Makefile :
#--------------------------clean
-.PHONY : tkosclean
+.PHONY : tclclean tkclean tkosclean
+
+tclclean :
+ @echo ""
+ @echo "*** tclclean ***"
+ $(MAKE) -C tcl$(TCL_VERSION)/unix clean
+
+tkclean :
+ @echo ""
+ @echo "*** $@ ***"
+ $(MAKE) -C tk$(TCL_VERSION)/unix clean
tkosclean :
@echo ""
@@ -71,7 +81,17 @@ tkosclean :
#--------------------------distclean
-.PHONY : tkosdistclean
+.PHONY : tcldistclean tkdistclean tkosdistclean
+
+tcldistclean :
+ @echo ""
+ @echo "*** $@ ***"
+ $(MAKE) -C tcl$(TCL_VERSION)/unix distclean
+
+tkdistclean :
+ @echo ""
+ @echo "*** $@ ***"
+ $(MAKE) -C tk$(TCL_VERSION)/unix distclean
tkosdistclean :
@echo ""
diff --git a/win/Makefile.in b/win/Makefile.in
index 38a5878..5ebca7e 100644
--- a/win/Makefile.in
+++ b/win/Makefile.in
@@ -135,7 +135,17 @@ openssl/Makefile:
#--------------------------clean
-.PHONY : tkosclean libxml2clean zlibclean opensslclean
+.PHONY : tclclean tkclean tkosclean libxml2clean zlibclean opensslclean
+
+tclclean :
+ @echo ""
+ @echo "*** tclclean ***"
+ $(MAKE) -C tcl$(TCL_VERSION)/win clean
+
+tkclean :
+ @echo ""
+ @echo "*** $@ ***"
+ $(MAKE) -C tk$(TCL_VERSION)/win clean
tkosclean : libxml2clean zlibclean opensslclean
@echo ""
@@ -159,7 +169,18 @@ opensslclean:
#--------------------------distclean
-.PHONY : tkosdistclean libxml2distclean zlibdistclean openssldistclean
+.PHONY : tcldistclean tkdistclean tkosdistclean
+.PHONY : libxml2distclean zlibdistclean openssldistclean
+
+tcldistclean :
+ @echo ""
+ @echo "*** $@ ***"
+ $(MAKE) -C tcl$(TCL_VERSION)/win distclean
+
+tkdistclean :
+ @echo ""
+ @echo "*** $@ ***"
+ $(MAKE) -C tk$(TCL_VERSION)/win distclean
tkosdistclean : libxml2distclean zlibdistclean openssldistclean
@echo ""