212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
|
doc:
@echo "If you have documentation to create, place the commands to"
@echo "build the docs in the 'doc:' target. For example:"
@echo " xml2nroff sample.xml > sample.n"
@echo " xml2html sample.xml > sample.html"
install: all install-binaries install-libraries install-doc
install-binaries: binaries install-lib-binaries install-bin-binaries
#========================================================================
# This rule installs platform-independent files, such as header files.
# The list=...; for p in $$list handles the empty list case x-platform.
#========================================================================
|
|
|
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
|
doc:
@echo "If you have documentation to create, place the commands to"
@echo "build the docs in the 'doc:' target. For example:"
@echo " xml2nroff sample.xml > sample.n"
@echo " xml2html sample.xml > sample.html"
install: all install-binaries install-libraries
install-binaries: binaries install-lib-binaries install-bin-binaries
#========================================================================
# This rule installs platform-independent files, such as header files.
# The list=...; for p in $$list handles the empty list case x-platform.
#========================================================================
|
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
|
$(srcdir)/license.terms $(srcdir)/manifest.uuid \
$(srcdir)/README.txt $(srcdir)/pkgIndex.tcl.in $(DIST_DIR)/
# TEA files
$(INSTALL_DATA_DIR) $(DIST_DIR)/tclconfig
$(DIST_INSTALL_DATA) $(srcdir)/tclconfig/README.txt \
$(srcdir)/tclconfig/tcl.m4 $(srcdir)/tclconfig/install-sh \
$(srcdir)/tclconfig/license.terms $(DIST_DIR)/tclconfig/
$(INSTALL_DATA_DIR) $(DIST_DIR)/win
$(DIST_INSTALL_DATA) \
$(srcdir)/win/README.txt $(srcdir)/win/*.vc \
$(srcdir)/win/nmakehlp.c $(srcdir)/win/*.in $(DIST_DIR)/win/
list='build demos doc generic library macosx tests unix'; \
|
|
|
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
|
$(srcdir)/license.terms $(srcdir)/manifest.uuid \
$(srcdir)/README.txt $(srcdir)/pkgIndex.tcl.in $(DIST_DIR)/
# TEA files
$(INSTALL_DATA_DIR) $(DIST_DIR)/tclconfig
$(DIST_INSTALL_DATA) $(srcdir)/tclconfig/README.txt \
$(srcdir)/tclconfig/tcl.m4 $(srcdir)/tclconfig/install-sh \
$(srcdir)/license.terms $(DIST_DIR)/tclconfig/
$(INSTALL_DATA_DIR) $(DIST_DIR)/win
$(DIST_INSTALL_DATA) \
$(srcdir)/win/README.txt $(srcdir)/win/*.vc \
$(srcdir)/win/nmakehlp.c $(srcdir)/win/*.in $(DIST_DIR)/win/
list='build demos doc generic library macosx tests unix'; \
|