summaryrefslogtreecommitdiff
path: root/Release
blob: 64aff33dfa8280fc92fe0211789e29d85e468e4f (plain)
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
#----------------------------------------------------------------------------
#       $Id$
#
#       Top-level Makefile for the ACE toolkit libraries, tests, and
#       applications
#----------------------------------------------------------------------------

#### NOTE:  The following comments describe how to create kits.
####        It's intended for use by ACE+TAO developers and
####        maintainers only.  ACE+TAO users need not be concerned
####        with creating kits, just unpacking and using them.

#### The "release" and "releaseall" targets can be used to create
#### the ACE and ACE+TAO kits.  By default, each creates a new beta
#### release.  To create a new minor or major release, add REL=minor
#### or REL=major, respectively, to the make invocation.
####
#### NOTE: the REL modifier applies to _both_ ACE and TAO in
#### releaseall!
####
#### To create a new ACE minor release and a TAO beta release:
####   % make release REL=minor
####   % cd TAO
####   % make release
####
#### There are some other release/releaseall options [default value is in
#### brackets]:
####   ACE_TAG [ACE version in your workspace]: prepend tag with -ta
####   TAO_TAG [TAO version in your workspace]: prepend tag with -tt
####
####   NOTE: the ACE and TAO versions will be updated automatically
####   by release/releaseall.  ACE_TAG and TAO_TAG can be overridden
####   to kit a particular version.
####
####   APPLY_NEW_TAG [enabled]: set to null to disable
####   CHECK [disabled]: set to -n to see what make_release will do, but not
####     do it
####   INSTALL_KIT [enabled]: set to null to not install in public
####     ftp/http directory on host ace
####   REL [beta]: set to minor or major, optionally, when applying a new tag
####   ZIP_FILES [enabled]: set to -z to disable creation of .zip files
####
#### Example creation of ACE-only kit, version ACE-5_0_1 from current
#### workspace:
#### make release ACE_TAG='-ta ACE-5_0_1' APPLY_NEW_TAG= \
####   INSTALL_KIT= ZIP_FILES=-z


CONTROLLED_FILES = \
        ACE-INSTALL.html \
        ACE-install.sh \
        ASNMP \
        AUTHORS \
        COPYING \
        ChangeLog* \
        FAQ \
        Release \
        ACE.mwc \
        Makefile.am \
        PROBLEM-REPORT-FORM \
        README \
        THANKS \
        VERSION \
	ACEXML \
        ace \
        ace-config.1.in \
        ace-config.in \
        aceConf.sh.in \
        apps \
        bin \
	configure.ac \
        lib \
	MPC \
        docs \
        etc \
        examples \
        include \
        m4 \
        netsvcs \
        performance-tests \
        tests \
	Kokyu \
        websvcs

RELEASE_FILES = \
        $(addprefix ACE_wrappers/,$(CONTROLLED_FILES)) \
        ACE_wrappers/ACE-INSTALL \
        ACE_wrappers/GNUmake* \
        ACE_wrappers/*.dsw \
        ACE_wrappers/*.sln \
        ACE_wrappers/*.bor \
        ACE_wrappers/man

AUTOCONF_RELEASE_FILES = \
	$(RELEASE_FILES) \
	ACE_wrappers/Makefile.in \
	ACE_wrappers/configure \
	ACE_wrappers/aclocal.m4 \
	ACE_wrappers/aux_config

ALL_RELEASE_FILES = \
	$(RELEASE_FILES) \
        ACE_wrappers/TAO

RELEASE_LIB_FILES = \
        ACE_wrappers/VERSION \
        ACE_wrappers/ace \
        ACE_wrappers/bin \
        ACE_wrappers/lib \
        ACE_wrappers/etc \
        ACE_wrappers/include \
        ACE_wrappers/m4 \
        ACE_wrappers/netsvcs \
        ACE_wrappers/tests \
        ACE_wrappers/websvcs

# Files that should get tagged at release time but shouldn't be in any
# of the release file lists since they may already be in a directory
# found in those lists.
RELEASE_TAG_FILES = \
        html \
        man/Makefile.am \
        man/man3/Makefile.am

.PHONY: tag ACE TAO CIAO acesources taosources ciaosources 
.PHONY: allsources manpages all

# Some useful defines which are used to create the release bundle. 
ACE_TAG_VALUE = $(shell head -1 VERSION | perl -ne \
                's/.* ([\d\.]+),.*\n/$$1/; tr/./_/; print "ACE-$$_";')
ACE_TAG       = -ta $(ACE_TAG_VALUE)
TAO_TAG_VALUE = $(shell head -1 TAO/VERSION | perl -ne \
                's/.* ([\d\.]+),.*\n/$$1/; tr/./_/; print "TAO-$$_";')
TAO_TAG       = -tt $(TAO_TAG_VALUE)
CIAO_TAG_VALUE = $(shell head -1 TAO/CIAO/VERSION | perl -ne \
                's/.* ([\d\.]+),.*\n/$$1/; tr/./_/; print "CIAO-$$_";')
CIAO_TAG       = -tc $(CIAO_TAG_VALUE)
APPLY_NEW_TAG      = tag
CHECK              =
INSTALL_KIT        = -i
REL                = beta
MAKE	 	   = make -f Release
ZIP_FILES          =

tag:
	@$(ACE_ROOT)/bin/make_release $(CHECK) -k ace -v $(REL) -u

#### The allsources target:
allsources: $(APPLY_NEW_TAG)
	@cd TAO  &&  $(MAKE) -s allsources REL=$(REL)

### Generate man pages
manpages:
	@$(ACE_ROOT)/bin/generate_rel_manpages

#### Generate everything in one shot -- not recommended
all: allsources manpages

#################################################################
#### The following targets in the following block are used by the
#### targets defined above. Please do not invoke them directly.
#################################################################

#### The release target creates the ACE (only) kit. This is not supposed
#### to be used directly. Use make -f Release ACE instead.
acesources: $(APPLY_NEW_TAG)
	@$(ACE_ROOT)/bin/make_release -k ace $(ACE_TAG) \
         $(INSTALL_KIT) $(ZIP_FILES) $(CHECK)

#### The following target is for use by the TAO Release target. It 
#### should not be called directly from the command line.  This is 
#### invoked by the TAO target this Release file.
taosources:
	@$(ACE_ROOT)/bin/make_release -k ace+tao $(ACE_TAG) $(TAO_TAG) \
         $(INSTALL_KIT) $(ZIP_FILES) $(CHECK)

#### The following target is for use by the TAO Release target. It 
#### should not be called directly from the command line.  This is 
#### invoked by the TAO target this Release file.
ciaosources:
	@$(ACE_ROOT)/bin/make_release -k ace+tao+ciao $(ACE_TAG) $(TAO_TAG) $(CIAO_TAG) \
         $(INSTALL_KIT) $(ZIP_FILES) $(CHECK)

#########################################################################
## The following targets are a matter of convinience. We don't 
## believe that we ever will release ACE+TAO+CIAO seperately. If that
## happens then we have these to help us out.
#########################################################################
# First, CIAO standalone
CIAO: $(allsources)

# TAO standalone
TAO: $(APPLY_NEW_TAG)
	@cd TAO  &&  $(MAKE) -s TAO REL=$(REL)

# ACE standalone
ACE: $(APPLY_NEW_TAG)
	$(MAKE) -s acesources  REL=$(REL)


.PHONY: show_controlled_files show_release_files show_release_lib_files
.PHONY: show_release_tag_files

show_controlled_files:
	@echo $(CONTROLLED_FILES)

show_release_files:
	@echo $(RELEASE_FILES)

show_autoconf_release_files:
	@echo $(AUTOCONF_RELEASE_FILES)

show_release_lib_files:
	@echo $(RELEASE_LIB_FILES)

show_release_tag_files:
	@echo $(RELEASE_TAG_FILES)

ACE-INSTALL: ACE-INSTALL.html
	@lynx -dump $< > $@