blob: 138ff5e47b3b629e37163457f9b58806d58bb52f (
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
|
# -*- makefile -*-
#----------------------------------------------------------------------------
# GNU ACE Workspace
#
# $Id: GNUACEWorkspaceCreator.pm 80826 2008-03-04 14:51:23Z wotte $
#
# This file was generated by MPC. Any changes made directly to
# this file will be lost the next time it is generated.
#
# MPC Command:
# /export/anduriltmp/bczar/DOC_ROOT/stage-10168/ACE_wrappers/bin/mwc.pl -type gnuace -exclude "TAO/TAO_*.mwc,TAO/CIAO/CIAO_*.mwc" -recurse -hierarchy -relative ACE_ROOT=/export/anduriltmp/bczar/DOC_ROOT/stage-10168/ACE_wrappers -relative TAO_ROOT=/export/anduriltmp/bczar/DOC_ROOT/stage-10168/ACE_wrappers/TAO -relative CIAO_ROOT=/export/anduriltmp/bczar/DOC_ROOT/stage-10168/ACE_wrappers/TAO/CIAO
#
#----------------------------------------------------------------------------
MAKEFILE = GNUmakefile
ifeq ($(findstring k,$(MAKEFLAGS)),k)
KEEP_GOING = -
endif
include $(ACE_ROOT)/include/makeinclude/macros.GNU
all: ACE ACE_FlReactor ACE_Qt3Reactor ACE_TkReactor ACE_XtReactor ACE_ETCL ACE_ETCL_Parser Monitor_Control-target SSL-target
REMAINING_TARGETS := $(subst all, , $(TARGETS_NESTED:.nested=)) $(CUSTOM_TARGETS)
$(REMAINING_TARGETS):
@$(MAKE) -f GNUmakefile.ACE $(@)
@$(MAKE) -f GNUmakefile.ACE_FlReactor $(@)
@$(MAKE) -f GNUmakefile.ACE_Qt3Reactor $(@)
@$(MAKE) -f GNUmakefile.ACE_TkReactor $(@)
@$(MAKE) -f GNUmakefile.ACE_XtReactor $(@)
@cd ETCL && $(MAKE) -f GNUmakefile.ACE_ETCL $(@)
@cd ETCL && $(MAKE) -f GNUmakefile.ACE_ETCL_Parser $(@)
@cd Monitor_Control && $(MAKE) -f GNUmakefile.Monitor_Control $(@)
@cd SSL && $(MAKE) -f GNUmakefile.SSL $(@)
.PHONY: ACE
ACE:
@$(MAKE) -f GNUmakefile.ACE all
.PHONY: ACE_FlReactor
ACE_FlReactor: ACE
@$(MAKE) -f GNUmakefile.ACE_FlReactor all
.PHONY: ACE_Qt3Reactor
ACE_Qt3Reactor: ACE
@$(MAKE) -f GNUmakefile.ACE_Qt3Reactor all
.PHONY: ACE_TkReactor
ACE_TkReactor: ACE
@$(MAKE) -f GNUmakefile.ACE_TkReactor all
.PHONY: ACE_XtReactor
ACE_XtReactor: ACE
@$(MAKE) -f GNUmakefile.ACE_XtReactor all
.PHONY: ACE_ETCL
ACE_ETCL: ACE
@cd ETCL && $(MAKE) -f GNUmakefile.ACE_ETCL all
.PHONY: ACE_ETCL_Parser
ACE_ETCL_Parser: ACE ACE_ETCL
@cd ETCL && $(MAKE) -f GNUmakefile.ACE_ETCL_Parser all
.PHONY: Monitor_Control-target
Monitor_Control-target: ACE ACE_ETCL ACE_ETCL_Parser
@cd Monitor_Control && $(MAKE) -f GNUmakefile.Monitor_Control all
.PHONY: SSL-target
SSL-target: ACE
@cd SSL && $(MAKE) -f GNUmakefile.SSL all
project_name_list:
@echo ACE_ETCL
@echo ACE_ETCL_Parser
@echo ACE
@echo ACE_FlReactor
@echo ACE_Qt3Reactor
@echo ACE_TkReactor
@echo ACE_XtReactor
@echo Monitor_Control-target
@echo SSL-target
|