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.15 2000/07/27 01:58:18 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.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.
|
326
327
328
329
330
331
332
333
334
335
336
337
338
339
|
distclean: clean
-rm -f *.tab.c
-rm -f Makefile $(CONFIG_CLEAN_FILES)
-rm -f config.cache config.log stamp-h stamp-h[0-9]*
-rm -f config.status
#========================================================================
# Install binary object libraries. On Windows this includes both .dll and
# .lib files. Because the .lib files are not explicitly listed anywhere,
# we need to deduce their existence from the .dll file of the same name.
# Additionally, the .dll files go into the bin directory, but the .lib
# files go into the lib directory. On Unix platforms, all library files
# go into the lib directory. In addition, this will generate the pkgIndex.tcl
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
|
distclean: clean
-rm -f *.tab.c
-rm -f Makefile $(CONFIG_CLEAN_FILES)
-rm -f config.cache config.log stamp-h stamp-h[0-9]*
-rm -f config.status
PKG_DIR = $(PACKAGE)$(VERSION)
COMPEXE = gzip
COMPEXT = gz
COMPRESS = tar cvf - $(PKG_DIR) | $(COMPEXE) > $(PKG_DIR).tar.$(COMPEXT)
DIST_ROOT = /tmp/dist
DIST_DIR = $(DIST_ROOT)/$(PKG_DIR)
dist-clean:
rm -rf $(DIST_DIR) $(DIST_ROOT)/$(PKG_DIR).tar.$(COMPEXT)
dist: dist-clean $(srcdir)/configure
mkdir -p $(DIST_DIR)
cp -p $(srcdir)/README.txt $(srcdir)/ChangeLog $(srcdir)/tls.htm \
$(srcdir)/configure $(srcdir)/configure.in \
$(srcdir)/Makefile.in $(srcdir)/*.c $(srcdir)/*.h \
$(srcdir)/pkgIndex.tcl.in $(srcdir)/license.terms \
$(srcdir)/aclocal.m4 $(srcdir)/tls.tcl \
$(DIST_DIR)
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);)
#========================================================================
# Install binary object libraries. On Windows this includes both .dll and
# .lib files. Because the .lib files are not explicitly listed anywhere,
# we need to deduce their existence from the .dll file of the same name.
# Additionally, the .dll files go into the bin directory, but the .lib
# files go into the lib directory. On Unix platforms, all library files
# go into the lib directory. In addition, this will generate the pkgIndex.tcl
|