-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMakefile.am
More file actions
executable file
·88 lines (80 loc) · 2.97 KB
/
Makefile.am
File metadata and controls
executable file
·88 lines (80 loc) · 2.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#----------------------------------------------------------------
#
# Makefile.am
#
# Automake source file for TNT
# This file, along with aclocal, configure.ac autoconf,
# and automake can produce a highly functional configuration
# script and Makefile.
#
# Sharon Zahn, Bob Techentin
# October 3, 2002
#
# Copyright 2002-2004 Mayo Foundation. All Rights Reserved
# $Id: Makefile.am,v 1.15 2004/07/22 14:23:32 techenti Exp $
#
#----------------------------------------------------------------
#----------------------------------------------------------------
# Note that this package _does_ require some of the support
# files like install-sh, so if you're running aclocal,
# autoconf, and automake for the first time, you'll need to
# supply command line switches --add-missing --copy.
#
# Or see (or run) the 'bootstrap' script for details.
#----------------------------------------------------------------
#---------------------------------------------------------------
# tcl/tk scripts that need to be installed.
#---------------------------------------------------------------
bin_SCRIPTS = tnt.tcl tnt
#---------------------------------------------------------------
# Examples to be installed
#---------------------------------------------------------------
examplesdir = $(prefix)/examples
examples_DATA = \
examples/9-7-00.xsctn \
examples/coplanar.xsctn \
examples/example-microstrip-2.xsctn \
examples/example-microstrip-5.xsctn \
examples/example-stripline-2.xsctn \
examples/generic.xsctn \
examples/test1.xsctn \
examples/trap_test.xsctn \
examples/w10t2.5.xsctn \
examples/w20t5.xsctn
#---------------------------------------------------------------
# Application documents get installed into the $(prefix)
# directory, which will be nice if the installer specifies
# a prefix. If not, then I suppose README will go into
# /usr.
#---------------------------------------------------------------
appdocsdir = $(prefix)
appdocs_DATA = \
AUTHORS$(TXTEXT) \
COPYING$(TXTEXT) \
ChangeLog$(TXTEXT) \
NEWS$(TXTEXT) \
README$(TXTEXT) \
THANKS$(TXTEXT)
#---------------------------------------------------------------
# Convert application documents to text files on Windows.
#---------------------------------------------------------------
if WINDOWS
TXTEXT=.txt
%$(TXTEXT) : %
cp $< $@
unix2dos $@
endif
#---------------------------------------------------------------
# Windows installation need a helper application to
# send postscript files through the print queue.
# Copy PrFile32.exe and it's zip distribution to ./bin.
#---------------------------------------------------------------
if WINDOWS
printfiledir = $(bindir)
printfile_DATA = printfile215-32.zip PrFile32.exe
endif
#---------------------------------------------------------------
# Subdirectories for automake and make
#---------------------------------------------------------------
SUBDIRS = bem calcCAP calcRL doc csdl gui units sppdgTcllib
EXTRA_DIST = $(bin_SCRIPTS) $(printfile_DATA) $(examples_DATA)