makefile
来自「OTP是开放电信平台的简称」· 代码 · 共 174 行
TXT
174 行
# ``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 via the world wide web 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.# # The Initial Developer of the Original Code is Ericsson Utvecklings AB.# Portions created by Ericsson are Copyright 1999, Ericsson Utvecklings# AB. All Rights Reserved.''# # $Id$#include $(ERL_TOP)/make/target.mkEBIN=../ebinifeq ($(TYPE),debug)ERL_COMPILE_FLAGS += -Ddebug -Wendifinclude $(ERL_TOP)/make/$(TARGET)/otp.mk# ----------------------------------------------------# Application version# ----------------------------------------------------include ../vsn.mkVSN=$(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 \ cosTransactionsERL_FILES = $(MODULES:%=%.erl) HRL_FILES = \ ETraP_Common.hrlGEN_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 = ../includeGEN_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.idlAPPUP_FILE = cosTransactions.appupAPPUP_SRC = $(APPUP_FILE).srcAPPUP_TARGET = $(EBIN)/$(APPUP_FILE)APP_FILE = cosTransactions.appAPP_SRC = $(APP_FILE).srcAPP_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=debugclean: 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.mkrelease_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)/includerelease_docs_spec:
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?