summaryrefslogtreecommitdiff
path: root/TAO/Makefile
blob: 555b5d01503aafc6d60f604ec73e47645e936557 (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
#----------------------------------------------------------------------------
#       $Id$
#
#       Top-level Makefile for the TAO
#----------------------------------------------------------------------------

#### The "release" targets can be used to create the ACE+TAO kit.  By
#### default, it creates a new beta release.  To create a new minor or
#### major release, add "REL=minor" or "REL=major", respectively, to
#### the make invocation.
####
#### To see what make release would do without actually doing it, add
#### "CHECK=-n" to the invocation.

#----------------------------------------------------------------------------
#       Local macros
#----------------------------------------------------------------------------

INFO    = README \
          VERSION

DIRS    = tao \
          TAO_IDL \
          tests \
          orbsvcs \
          examples \
          performance-tests \
          utils \
	  docs/tutorials/Quoter

CLONE   = Makefile \
          tao \
          TAO_IDL \
          tests \
          orbsvcs \
          examples \
          performance-tests \
          utils \
	  docs/tutorials/Quoter

#----------------------------------------------------------------------------
#       Include macros and targets
#----------------------------------------------------------------------------

include $(ACE_ROOT)/include/makeinclude/wrapper_macros.GNU
include $(ACE_ROOT)/include/makeinclude/macros.GNU
include $(ACE_ROOT)/include/makeinclude/rules.common.GNU
include $(ACE_ROOT)/include/makeinclude/rules.nested.GNU
include $(ACE_ROOT)/include/makeinclude/rules.nolocal.GNU

# For the following to work you need to compile the
# $(ACE_ROOT)/bin/clone.cpp file and install it in your ~/bin
# directory (or some place similar).

.PHONY: clone reverseclean
clone:
	@for dir in $(CLONE) ;\
	do \
		(clone -s $(ACE_ROOT)/$$dir $$dir) \
	done

reverseclean:
	@$(ACE_ROOT)/bin/reverse_clean $(DIRS)

CONTROLLED_FILES = TAO/COPYING* \
	    	   TAO/ChangeLog* \
	  	   TAO/LICENSE.sun \
		   TAO/Makefile* \
		   TAO/PROBLEM-REPORT-FORM \
		   TAO/README* \
		   TAO/TAO-INSTALL.html \
		   TAO/TAOACE* \
		   TAO/TAO_IDL \
		   TAO/VERSION \
		   TAO/docs \
		   TAO/examples \
		   TAO/orbsvcs \
		   TAO/performance-tests \
		   TAO/release.pl \
		   TAO/rules.tao.GNU \
		   TAO/tao \
		   TAO/tao-config.1.in \
		   TAO/tao-config.in \
		   TAO/taoConf.sh.in \
	           TAO/tao_targets.GNU \
		   TAO/taoconfig.mk \
		   TAO/tests \
		   TAO/utils


RELEASE_FILES = $(addprefix ACE_wrappers/,$(CONTROLLED_FILES)) \
                ACE_wrappers/TAO/INSTALL \
                ACE_wrappers/TAO/orbsvcs/README

.PHONY: INSTALL
INSTALL: TAO-INSTALL.html
	@lynx -dump $^ > $@; chmod a+r $@

orbsvcs/README: docs/orbsvcs.html
	@lynx -dump $^ > $@; chmod a+r $@

.PHONY: release tag

REL = beta
CHECK =
APPLY_NEW_TAG = tag

#### The call to make_release below doesn't actually create the kit.
#### Then, make releasetao is invoked to actually create the kit.
release: $(APPLY_NEW_TAG)
	@cd ..  &&  $(MAKE) -s releasetao

#### The call to releaseall below doesn't actually create the kit.
#### Then, make releasetao is invoked to actually create the kit.
releaseall: $(APPLY_NEW_TAG)
	@cd CIAO  &&  $(MAKE) -s release REL=$(REL)

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

.PHONY: show_controlled_files show_release_files show_release_lib_files

show_controlled_files:
	@echo $(CONTROLLED_FILES)

show_release_files:
	@echo $(RELEASE_FILES)

show_release_lib_files:
	@echo ""

show_release_tag_files:
	@echo ""