8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#
# Copyright (c) 1999-2000 Ajuba Solutions.
# All rights reserved.
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# RCS: @(#) $Id: Makefile.in,v 1.16 2000/08/23 17:39:04 hobbs Exp $
lib_BINARIES=$(tls_LIB_FILE)
BINARIES=$(lib_BINARIES)
#========================================================================
# Enumerate the names of the source files included in this package.
|
|
|
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#
# Copyright (c) 1999-2000 Ajuba Solutions.
# All rights reserved.
#
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
# RCS: @(#) $Id: Makefile.in,v 1.17 2001/06/21 23:33:38 hobbs Exp $
lib_BINARIES=$(tls_LIB_FILE)
BINARIES=$(lib_BINARIES)
#========================================================================
# Enumerate the names of the source files included in this package.
|
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
|
mkdir $(DIST_DIR)/config
cp -p $(srcdir)/config/install-sh $(srcdir)/config/mkinstalldirs \
$(srcdir)/config/tcl.m4 \
$(DIST_DIR)/config
mkdir $(DIST_DIR)/tests
cp -p $(srcdir)/tests/*.tcl $(srcdir)/tests/*.test $(DIST_DIR)/tests
mkdir $(DIST_DIR)/tests/certs
cp -p $(srcdir)/tests/certs/*.pem $(DIST_DIR)/tests/certs
chmod 664 $(DIST_DIR)/Makefile.in
chmod 775 $(DIST_DIR)/configure $(DIST_DIR)/configure.in
chmod +x $(DIST_DIR)/config/install-sh
(cd $(DIST_ROOT); $(COMPRESS);)
|
|
|
|
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
|
mkdir $(DIST_DIR)/config
cp -p $(srcdir)/config/install-sh $(srcdir)/config/mkinstalldirs \
$(srcdir)/config/tcl.m4 \
$(DIST_DIR)/config
mkdir $(DIST_DIR)/tests
cp -p $(srcdir)/tests/*.{tcl,test} $(DIST_DIR)/tests
mkdir $(DIST_DIR)/tests/certs
cp -p $(srcdir)/tests/certs/*.{pem,key,req,txt} $(DIST_DIR)/tests/certs
chmod 664 $(DIST_DIR)/Makefile.in
chmod 775 $(DIST_DIR)/configure $(DIST_DIR)/configure.in
chmod +x $(DIST_DIR)/config/install-sh
(cd $(DIST_ROOT); $(COMPRESS);)
|