1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
-
+
|
#
# This file is a Makefile for Tcl. If it has the name "Makefile.in"
# then it is a template for a Makefile; to generate the actual Makefile,
# run "./configure", which is a configuration script generated by the
# "autoconf" program (constructs like "@foo@" will get replaced in the
# actual Makefile.
#
# RCS: @(#) $Id: Makefile.in,v 1.73 2003/06/25 23:02:11 dkf Exp $
# RCS: @(#) $Id: Makefile.in,v 1.74 2003/10/21 00:23:34 kennykb Exp $
VERSION = @TCL_VERSION@
#----------------------------------------------------------------
# Things you can change to personalize the Makefile for your own
# site (you can make these changes in either Makefile.in or
# Makefile, but changes to Makefile will get lost if you re-run
|
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
|
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
|
-
+
|
do \
if [ ! -d $$i ] ; then \
echo "Making directory $$i"; \
$(MKDIR) $$i; \
else true; \
fi; \
done;
@for i in http1.0 http2.4 opt0.4 encoding msgcat1.3 tcltest2.2; \
@for i in http1.0 http2.4 opt0.4 encoding msgcat1.4 tcltest2.2; \
do \
if [ ! -d $(SCRIPT_INSTALL_DIR)/$$i ] ; then \
echo "Making directory $(SCRIPT_INSTALL_DIR)/$$i"; \
$(MKDIR) $(SCRIPT_INSTALL_DIR)/$$i; \
else true; \
fi; \
done;
|
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
|
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
|
-
+
-
+
|
$(COPY) "$$j" "$(SCRIPT_INSTALL_DIR)/http2.4"; \
done;
@echo "Installing library opt0.4 directory";
@for j in $(ROOT_DIR)/library/opt/*.tcl; \
do \
$(COPY) "$$j" "$(SCRIPT_INSTALL_DIR)/opt0.4"; \
done;
@echo "Installing library msgcat1.3 directory";
@echo "Installing library msgcat1.4 directory";
@for j in $(ROOT_DIR)/library/msgcat/*.tcl; \
do \
$(COPY) "$$j" "$(SCRIPT_INSTALL_DIR)/msgcat1.3"; \
$(COPY) "$$j" "$(SCRIPT_INSTALL_DIR)/msgcat1.4"; \
done;
@echo "Installing library tcltest2.2 directory";
@for j in $(ROOT_DIR)/library/tcltest/*.tcl; \
do \
$(COPY) "$$j" "$(SCRIPT_INSTALL_DIR)/tcltest2.2"; \
done;
@echo "Installing encodings";
|