-
Notifications
You must be signed in to change notification settings - Fork 4
/
SysDefs
129 lines (66 loc) · 2.67 KB
/
SysDefs
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# Definitions for: ocs root system
#
# $Id$
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Fundamental system definitions (please fill out)
# Name of the system
NODENAME = ocs
# The names of the direct subdirectories of this node
# also to be built. NOTE that these are not the OCS subsystems
# but rather reflect the hierarchy of the project tree.
SUBNODES = src doc examples
# Sources of the system included into a release
SOURCES = SysDefs ProjectDefs.build Makefile.in \
ocs-version.in configure.in config.sub config.guess \
install-sh LICENSE
# NOTE ACKNOWLEDGE VERSION INSTALL CHANGES FUTURE \
# Makefile ProjectDefs.build config_OCS
# Manuals attached to this system included into a release
MANUALS =
# All components of this system. Add here auxiliary
# files which shall not be included into a release.
COMPONENTS = $(SOURCES) $(MANUALS) \
ProjectDefs.selftest ProjectDefs.release \
selftest release
# Include this statement to deactivate the derived object cache.
.BPOOL:
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Fundamental system rules (please fill out)
# The default target
_default: all
# The action on this node associated with 'all'
_all:
# The action on this node associated with 'check'
_check:
# The action on this node associated with 'clean'
_clean:
# The action associated with 'install'
_install: _installmanuals
# A definitions and rules file which shall be build and afterwards recursivly
# included with each run of shape. If LOCALDEFS is defined, you must
# also give a rule how to create it.
LOCALDEFS =
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Release management definitions (fill out if required)
# Path to this node relative to the root of the release tree
RELEASENODEPATH =
# Derived objects which shall be included into the release
RELEASEOBJECTS =
# File which has attached the 'lastrelease' attribute
VERSIONFILE = VERSION
AUXVERSIONFILES = config_OCS
# Path to the boot area for this node relative to the release tree
RELEASEBOOTPATH =
# Sources which shall be included into the boot area of a release
BOOTSOURCES =
# Derived objects which shall be included into the boot area of a release
BOOTOBJECTS =
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Release management rules (fill out if required)
# The action to derive the release objects
_releaseobjects:
# The action to derive the boot objects
_bootobjects:
# +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Include generic rules (do not change)
include $(OMLIBPATH)/GlobalRules