Diff

Differences From Artifact [8f71c714bb]:

To Artifact [68c848565e]:


236
237
238
239
240
241
242

243
244
245
246
247
248
249
250
251
252

253
254







255
256



257
258
259
260
261
262
263
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252

253
254
255
256
257
258
259
260
261
262


263
264
265
266
267
268
269
270
271
272







+









-
+


+
+
+
+
+
+
+
-
-
+
+
+







#========================================================================
# Install documentation.  Unix manpages should go in the $(mandir)
# directory.
#========================================================================

install-doc-html: doc
	@$(INSTALL_DATA_DIR) "$(DESTDIR)$(pkglibdir)/html"
	@echo "Installing HTML documentation in $(DESTDIR)$(pkglibdir)/html"
	@list='doc/*.html'; for i in $$list; do \
	    if test -f $$i ; then \
		echo "Installing $$i"; \
		$(INSTALL_DATA) $$i "$(DESTDIR)$(pkglibdir)/html"; \
	    fi; \
	done

install-doc-n: doc
	@$(INSTALL_DATA_DIR) "$(DESTDIR)$(mandir)/mann"
	@echo "Installing documentation in $(DESTDIR)$(mandir)"
	@echo "Installing nroff documentation in $(DESTDIR)$(mandir)/mann"
	@list='doc/*.n'; for i in $$list; do \
	    if test -f $$i ; then \
		if test -f "$(DESTDIR)$(mandir)/mann/Tcl.n.gz" -o \
		    "$(DESTDIR)$(mandir)/mann/Tcl*.n.gz" ; then \
		    gzip -k $$i ; \
		    echo "Installing $$i.gz"; \
		    $(INSTALL_DATA) $$i.gz "$(DESTDIR)$(mandir)/mann" ; \
		    rm -f $$i.gz;\
		else \
		echo "Installing $$i"; \
		$(INSTALL_DATA) $$i "$(DESTDIR)$(mandir)/mann" ; \
		    echo "Installing $$i"; \
		    $(INSTALL_DATA) $$i "$(DESTDIR)$(mandir)/mann" ; \
		fi; \
	    fi; \
	done

#========================================================================
# Test and debug
#========================================================================