blob: 7e10ec175bb4db3bd4e74cb98df293808beb3219 (
plain) (
tree)
|
|
#
# %CopyrightBegin%
#
# Copyright Ericsson AB 1999-2009. All Rights Reserved.
#
# The contents of this file are subject to the Erlang Public License,
# Version 1.1, (the "License"); you may not use this file except in
# compliance with the License. You should have received a copy of the
# Erlang Public License along with this software. If not, it can be
# retrieved online at http://www.erlang.org/.
#
# Software distributed under the License is distributed on an "AS IS"
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
# the License for the specific language governing rights and limitations
# under the License.
#
# %CopyrightEnd%
#
#
include $(ERL_TOP)/make/target.mk
EBIN=../ebin
ifeq ($(TYPE),debug)
ERL_COMPILE_FLAGS += -Ddebug -W
endif
include $(ERL_TOP)/make/$(TARGET)/otp.mk
# ----------------------------------------------------
# Application version
# ----------------------------------------------------
include ../vsn.mk
VSN=$(COSTRANSACTIONS_VSN)
# ----------------------------------------------------
# Release directory specification
# ----------------------------------------------------
RELSYSDIR = $(RELEASE_PATH)/lib/cosTransactions-$(VSN)
# ----------------------------------------------------
# Target Specs
# ----------------------------------------------------
MODULES = \
ETraP_Common \
etrap_logmgr \
ETraP_Server_impl \
CosTransactions_Terminator_impl \
CosTransactions_TransactionFactory_impl \
cosTransactions
ERL_FILES = $(MODULES:%=%.erl)
HRL_FILES = \
ETraP_Common.hrl
GEN_ERL_FILES = \
oe_CosTransactions.erl \
CosTransactions_Control.erl \
CosTransactions_Coordinator.erl \
CosTransactions_HeuristicCommit.erl \
CosTransactions_HeuristicHazard.erl \
CosTransactions_HeuristicMixed.erl \
CosTransactions_HeuristicRollback.erl \
CosTransactions_Inactive.erl \
CosTransactions_InvalidControl.erl \
CosTransactions_NoTransaction.erl \
CosTransactions_NotPrepared.erl \
CosTransactions_NotSubtransaction.erl \
CosTransactions_RecoveryCoordinator.erl \
CosTransactions_Resource.erl \
CosTransactions_SubtransactionAwareResource.erl \
CosTransactions_SubtransactionsUnavailable.erl \
CosTransactions_Terminator.erl \
CosTransactions_TransactionFactory.erl \
CosTransactions_Unavailable.erl \
CosTransactions_SynchronizationUnavailable.erl \
CosTransactions_TransIdentity.erl \
CosTransactions_PropagationContext.erl \
CosTransactions_otid_t.erl \
CosTransactions_WrongTransaction.erl \
ETraP_Server.erl
# CosTransactions_Synchronization.erl \
EXTERNAL_INC_PATH = ../include
GEN_HRL_FILES = \
oe_CosTransactions.hrl \
CosTransactions.hrl \
CosTransactions_Control.hrl \
CosTransactions_Coordinator.hrl \
CosTransactions_RecoveryCoordinator.hrl \
CosTransactions_Resource.hrl \
CosTransactions_SubtransactionAwareResource.hrl \
CosTransactions_Terminator.hrl \
CosTransactions_TransactionFactory.hrl \
ETraP.hrl \
ETraP_Server.hrl
# CosTransactions_Synchronization.hrl \
EXTERNAL_GEN_HRL_FILES = $(GEN_HRL_FILES:%=$(EXTERNAL_INC_PATH)/%)
GEN_FILES = $(GEN_ERL_FILES) $(EXTERNAL_GEN_HRL_FILES)
TARGET_FILES = \
$(GEN_ERL_FILES:%.erl=$(EBIN)/%.$(EMULATOR)) \
$(MODULES:%=$(EBIN)/%.$(EMULATOR))
IDL_FILE = \
CosTransactions.idl
APPUP_FILE = cosTransactions.appup
APPUP_SRC = $(APPUP_FILE).src
APPUP_TARGET = $(EBIN)/$(APPUP_FILE)
APP_FILE = cosTransactions.app
APP_SRC = $(APP_FILE).src
APP_TARGET = $(EBIN)/$(APP_FILE)
# ----------------------------------------------------
# FLAGS
# ----------------------------------------------------
ERL_IDL_FLAGS += -pa $(ERL_TOP)/lib/cosTransactions/ebin \
-pa $(ERL_TOP)/lib/ic/ebin\
-pa $(ERL_TOP)/lib/orber/ebin
# The -pa option is just used temporary until erlc can handle
# includes from other directories than ../include .
ERL_COMPILE_FLAGS += \
$(ERL_IDL_FLAGS) \
-I$(ERL_TOP)/lib/cosTransactions/include \
-I$(ERL_TOP)/lib/orber/include \
+'{parse_transform,sys_pre_attributes}' \
+'{attribute,insert,app_vsn,"cosTransactions_$(COSTRANSACTIONS_VSN)"}'
# ----------------------------------------------------
# Targets
# ----------------------------------------------------
opt: $(TARGET_FILES) $(APP_TARGET) $(APPUP_TARGET)
debug:
@${MAKE} TYPE=debug
clean:
rm -f $(TARGET_FILES) $(GEN_FILES) $(APP_TARGET) $(APPUP_TARGET)
rm -f errs core *~
$(APP_TARGET): $(APP_SRC)
sed -e 's;%VSN%;$(VSN);' $(APP_SRC) > $(APP_TARGET)
$(APPUP_TARGET): $(APPUP_SRC) ../vsn.mk
sed -e 's;%VSN%;$(VSN);' $< > $@
docs:
# ----------------------------------------------------
# Special Build Targets
# ----------------------------------------------------
$(GEN_ERL_FILES) $(EXTERNAL_GEN_HRL_FILES): CosTransactions.idl
erlc $(ERL_IDL_FLAGS) +'{cfgfile,"CosTransactions.cfg"}' CosTransactions.idl
mv $(GEN_HRL_FILES) $(EXTERNAL_INC_PATH)
# ----------------------------------------------------
# Release Target
# ----------------------------------------------------
include $(ERL_TOP)/make/otp_release_targets.mk
release_spec: opt
$(INSTALL_DIR) $(RELSYSDIR)/ebin
$(INSTALL_DATA) $(TARGET_FILES) $(APP_TARGET) $(APPUP_TARGET) $(RELSYSDIR)/ebin
$(INSTALL_DIR) $(RELSYSDIR)/src
$(INSTALL_DATA) $(ERL_FILES) $(HRL_FILES) $(GEN_ERL_FILES) $(IDL_FILE) $(RELSYSDIR)/src
$(INSTALL_DIR) $(RELSYSDIR)/include
$(INSTALL_DATA) $(EXTERNAL_GEN_HRL_FILES) $(RELSYSDIR)/include
release_docs_spec:
|