1 |
aw0a |
1 |
# ASCEND Help Makefile |
2 |
|
|
# Mark Thomas |
3 |
|
|
# May 27, 1996 |
4 |
|
|
# $Date: 1998/05/15 13:09:01 $ |
5 |
|
|
# $Revision: 1.7 $ |
6 |
|
|
# $Author: mthomas $ |
7 |
|
|
# $Source: /afs/cs.cmu.edu/project/ascend/Repository/help/Makefile.in,v $ |
8 |
|
|
# |
9 |
|
|
|
10 |
|
|
# This file installs the ASCEND help files into the install directory |
11 |
|
|
# HELP_DIR |
12 |
|
|
# |
13 |
|
|
# This Makefile is the top level makefile for the directory tree |
14 |
|
|
# rooted here. Typing `make' in this directory will traverse the |
15 |
|
|
# directory tree (`make' descends into the directories listed in |
16 |
|
|
# INSTALL_SUBDIR_LIST). |
17 |
|
|
|
18 |
|
|
# Two macros get defined here and in every Makefile in the |
19 |
|
|
# subdirectory tree: |
20 |
|
|
# |
21 |
|
|
# INSTALL_SUBDIR_LIST -- lists the subdirectories of this directory |
22 |
|
|
# which contain files to be installed |
23 |
|
|
# |
24 |
|
|
# INSTALL_FILE_LIST -- lists the files that are to be installed |
25 |
|
|
# when ASCEND is installed |
26 |
|
|
# |
27 |
|
|
# Since this is the top of this directory tree, this Makefile needs |
28 |
|
|
# to define some macros that are used throughout the tree: |
29 |
|
|
# |
30 |
|
|
# RULES_FILE -- a makefile that contains general rules for this |
31 |
|
|
# directory tree; it is passed by `make' to every |
32 |
|
|
# subdirectory and included by that directory's |
33 |
|
|
# Makefile |
34 |
|
|
# |
35 |
|
|
# INSTALL_TARGET_DIR -- the directory in which to install the files |
36 |
|
|
|
37 |
|
|
|
38 |
|
|
SHELL = /bin/sh |
39 |
|
|
builddir = @help_topbuilddir@/ascend4 |
40 |
|
|
srcdir = @srcdir@ |
41 |
|
|
VPATH = @srcdir@ |
42 |
|
|
|
43 |
|
|
|
44 |
|
|
|
45 |
|
|
# the default target. `make' without a target does nothing |
46 |
|
|
default:: |
47 |
|
|
|
48 |
|
|
# these targets install all files in this subtree |
49 |
|
|
install install-libraries install-help:: Makefile.Rules install-subtree |
50 |
|
|
|
51 |
|
|
# unintall the files in this subtree |
52 |
|
|
uninstall:: uninstall-subtree |
53 |
|
|
|
54 |
|
|
# Warn when the Makefile.Rules is older than Makefile.Rules.in |
55 |
|
|
Makefile.Rules: $(srcdir)/Makefile.Rules.in |
56 |
|
|
@echo "" |
57 |
|
|
@echo "$(srcdir)/Makefile.Rules.in is newer than Makefile.Rules" |
58 |
|
|
@echo "Consider running 'configure' again or running 'make makes'" |
59 |
|
|
@echo "" |
60 |
|
|
|
61 |
|
|
# when backing up makefiles, also save the Makefile.Rules file |
62 |
|
|
save-makes:: |
63 |
|
|
-$(CP) Makefile.Rules Makefile.Rules.SAVED |
64 |
|
|
|
65 |
|
|
|
66 |
|
|
|
67 |
|
|
RULES_FILE = Makefile.Rules |
68 |
|
|
|
69 |
|
|
INSTALL_TARGET_DIR = $(HELP_DIR) |
70 |
|
|
|
71 |
|
|
INSTALL_SUBDIR_LIST = \ |
72 |
|
|
Screenshots |
73 |
|
|
|
74 |
|
|
INSTALL_FILE_LIST = \ |
75 |
|
|
ascend-helpLOP.htm \ |
76 |
|
|
ascend-helpTOC.htm \ |
77 |
|
|
ascendtitle.htm \ |
78 |
|
|
ascplot.htm \ |
79 |
|
|
browser.htm \ |
80 |
|
|
display.htm \ |
81 |
|
|
fontsel.htm \ |
82 |
|
|
getting_started.htm \ |
83 |
|
|
history.htm \ |
84 |
|
|
index.htm \ |
85 |
|
|
library.htm \ |
86 |
|
|
library_example_files.htm \ |
87 |
|
|
measures.htm \ |
88 |
|
|
print_dialog.htm \ |
89 |
|
|
probe.htm \ |
90 |
|
|
script.htm \ |
91 |
|
|
simple_fs_model.htm \ |
92 |
|
|
simple_problems.htm \ |
93 |
|
|
simulations.htm \ |
94 |
|
|
solver.htm \ |
95 |
|
|
syntax.htm \ |
96 |
|
|
title.htm \ |
97 |
|
|
tkxgraph.htm \ |
98 |
|
|
toc.htm \ |
99 |
|
|
toolbox.htm \ |
100 |
|
|
units.htm \ |
101 |
|
|
using_ascend.htm \ |
102 |
|
|
utilities.htm \ |
103 |
|
|
when_model.htm |
104 |
|
|
|
105 |
|
|
|
106 |
|
|
|
107 |
|
|
include $(builddir)/ConfigAscend |
108 |
|
|
include $(RULES_FILE) |