Tcl Extension Architecture (TEA) Sample Extension

Check-in [c2dc5bb9fa]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Remove useless ranlib invocation. See also https://core.tcl.tk/tcl/info/9f5893b2e81f9576
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: c2dc5bb9fa10882dba8ad235b2e282de32411679a32330049c4234f68b1daafd
User & Date: stu 2018-06-15 06:17:37.664
Original Comment: Remove useless ranlib invocation. See also https://core.tcl.tk/tcl/info/9f5893b2e81f9576
Context
2018-06-15
06:25
Remove one more ranlib-related line. check-in: e0041996cd user: stu tags: trunk
06:17
Remove useless ranlib invocation. See also https://core.tcl.tk/tcl/info/9f5893b2e81f9576 check-in: c2dc5bb9fa user: stu tags: trunk
2018-06-05
18:59
Add gdb-test target. check-in: 908da789d2 user: pooryorick tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to Makefile.in.
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
# You should not have to modify this target.
#========================================================================

install-lib-binaries: binaries
	@$(INSTALL_DATA_DIR) $(DESTDIR)$(pkglibdir)
	@list='$(lib_BINARIES)'; for p in $$list; do \
	  if test -f $$p; then \
	    if test "x$$stub" = "xstub"; then \
		echo " $(RANLIB_STUB) $$p"; \
		$(RANLIB_STUB) $$p; \
	    else \
		echo " $(RANLIB) $$p"; \
		$(RANLIB) $$p; \
	    fi; \
	    echo " $(INSTALL_LIBRARY) $$p $(DESTDIR)$(pkglibdir)/$$p"; \
	    $(INSTALL_LIBRARY) $$p $(DESTDIR)$(pkglibdir)/$$p; \
	    stub=`echo $$p|sed -e "s/.*\(stub\).*/\1/"`; \
	    ext=`echo $$p|sed -e "s/.*\.//"`; \
	    if test "x$$ext" = "xdll"; then \
		lib=`basename $$p|sed -e 's/.[^.]*$$//'`.lib; \
		if test -f $$lib; then \







<
<
<
<
<
<
<







383
384
385
386
387
388
389







390
391
392
393
394
395
396
# You should not have to modify this target.
#========================================================================

install-lib-binaries: binaries
	@$(INSTALL_DATA_DIR) $(DESTDIR)$(pkglibdir)
	@list='$(lib_BINARIES)'; for p in $$list; do \
	  if test -f $$p; then \







	    echo " $(INSTALL_LIBRARY) $$p $(DESTDIR)$(pkglibdir)/$$p"; \
	    $(INSTALL_LIBRARY) $$p $(DESTDIR)$(pkglibdir)/$$p; \
	    stub=`echo $$p|sed -e "s/.*\(stub\).*/\1/"`; \
	    ext=`echo $$p|sed -e "s/.*\.//"`; \
	    if test "x$$ext" = "xdll"; then \
		lib=`basename $$p|sed -e 's/.[^.]*$$//'`.lib; \
		if test -f $$lib; then \