diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2017-03-30 17:11:56 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2017-03-30 17:11:56 (GMT) |
commit | e831cb2e08e0d0a08d16608a1b9c29b4ea10e18f (patch) | |
tree | 7d215a135b5f02286b5eff53bd281e923b77c9fe /unix | |
parent | f3354d608a38ceee396fc4d2f28c069a83346145 (diff) | |
download | blt-e831cb2e08e0d0a08d16608a1b9c29b4ea10e18f.zip blt-e831cb2e08e0d0a08d16608a1b9c29b4ea10e18f.tar.gz blt-e831cb2e08e0d0a08d16608a1b9c29b4ea10e18f.tar.bz2 |
add makefile status
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 34f9a44..1464ef0 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -33,12 +33,12 @@ saods9 : dirs tcl tk \ tcl : tcl$(TCL_VERSION)/unix/Makefile @echo "" - @echo "*** Install tcl$(TCL_VERSION) ***" + @echo "*** $@ ***" $(MAKE) -C tcl$(TCL_VERSION)/unix -j $(JOBS) install tcl$(TCL_VERSION)/unix/Makefile : @echo "" - @echo "*** Configure tcl$(TCL_VERSION) ***" + @echo "*** $@ ***" cd tcl$(TCL_VERSION)/unix; \ ./configure \ --prefix $(prefix) --exec-prefix $(exec_prefix) --libdir $(libdir) \ @@ -47,12 +47,12 @@ tcl$(TCL_VERSION)/unix/Makefile : tk : tk$(TCL_VERSION)/unix/Makefile @echo "" - @echo "*** Install tk$(TCL_VERSION) ***" + @echo "*** $@ ***" $(MAKE) -C tk$(TCL_VERSION)/unix -j $(JOBS) install tk$(TCL_VERSION)/unix/Makefile : @echo "" - @echo "*** Configure tk$(TCL_VERSION) ***" + @echo "*** $@ ***" cd tk$(TCL_VERSION)/unix; \ ./configure \ $(TKFLAGS) \ @@ -65,12 +65,16 @@ tk$(TCL_VERSION)/unix/Makefile : .PHONY : tkunixclean tkunixclean : + @echo "" + @echo "*** $@ ***" #--------------------------distclean .PHONY : tkunixdistclean tkunixdistclean : + @echo "" + @echo "*** $@ ***" #--------------------------distribution |