📄 makefile
字号:
# ``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.mkifeq ($(TYPE),debug)ERL_COMPILE_FLAGS += -Ddebug -Wendifinclude $(ERL_TOP)/make/$(TARGET)/otp.mk# ----------------------------------------------------# Application version# ----------------------------------------------------include ../vsn.mkVSN=$(COSPROPERTY_VSN)# ----------------------------------------------------# Release directory specification# ----------------------------------------------------RELSYSDIR = $(RELEASE_PATH)/lib/cosProperty-$(VSN)EXTERNAL_INC_PATH = ../include# ----------------------------------------------------# Target Specs# ----------------------------------------------------MODULES = \ cosProperty \ CosPropertyService_PropertySetDefFactory_impl \ CosPropertyService_PropertySetDef_impl \ CosPropertyService_PropertySetFactory_impl \ CosPropertyService_PropertiesIterator_impl \ CosPropertyService_PropertyNamesIterator_implERL_FILES = $(MODULES:%=%.erl) HRL_FILES = \ cosProperty.hrl \GEN_ERL_FILES = \ oe_CosProperty.erl \ CosPropertyService_ConflictingProperty.erl \ CosPropertyService_ConstraintNotSupported.erl \ CosPropertyService_FixedProperty.erl \ CosPropertyService_InvalidPropertyName.erl \ CosPropertyService_MultipleExceptions.erl \ CosPropertyService_Properties.erl \ CosPropertyService_PropertiesIterator.erl \ CosPropertyService_Property.erl \ CosPropertyService_PropertyDef.erl \ CosPropertyService_PropertyDefs.erl \ CosPropertyService_PropertyException.erl \ CosPropertyService_PropertyExceptions.erl \ CosPropertyService_PropertyMode.erl \ CosPropertyService_PropertyModes.erl \ CosPropertyService_PropertyNames.erl \ CosPropertyService_PropertyNamesIterator.erl \ CosPropertyService_PropertyNotFound.erl \ CosPropertyService_PropertySet.erl \ CosPropertyService_PropertySetDef.erl \ CosPropertyService_PropertySetDefFactory.erl \ CosPropertyService_PropertySetFactory.erl \ CosPropertyService_PropertyTypes.erl \ CosPropertyService_ReadOnlyProperty.erl \ CosPropertyService_UnsupportedMode.erl \ CosPropertyService_UnsupportedProperty.erl \ CosPropertyService_UnsupportedTypeCode.erlLOCAL_HRL_FILES = \ oe_CosProperty.hrl \ CosPropertyService.hrl \ CosPropertyService_PropertiesIterator.hrl \ CosPropertyService_PropertyNamesIterator.hrl \ CosPropertyService_PropertySet.hrl \ CosPropertyService_PropertySetDef.hrl \ CosPropertyService_PropertySetDefFactory.hrl \ CosPropertyService_PropertySetFactory.hrlGEN_HRL_FILES = $(LOCAL_HRL_FILES:%=$(EXTERNAL_INC_PATH)/%)GEN_FILES = \ $(GEN_HRL_FILES) \ $(GEN_ERL_FILES)TARGET_FILES = \ $(GEN_ERL_FILES:%.erl=$(EBIN)/%.$(EMULATOR)) \ $(MODULES:%=$(EBIN)/%.$(EMULATOR)) IDL_FILES = \ CosProperty.idlAPPUP_FILE = cosProperty.appupAPPUP_SRC = $(APPUP_FILE).srcAPPUP_TARGET = $(EBIN)/$(APPUP_FILE)APP_FILE = cosProperty.appAPP_SRC = $(APP_FILE).srcAPP_TARGET = $(EBIN)/$(APP_FILE)# ----------------------------------------------------# FLAGS# ----------------------------------------------------ERL_IDL_FLAGS += -pa $(ERL_TOP)/lib/cosProperty/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) \ -pa $(ERL_TOP)/lib/orber/include \ -pa $(ERL_TOP)/lib/cosProperty/include \ -I$(ERL_TOP)/lib/cosProperty/include \ -I$(ERL_TOP)/lib/orber/include \ +'{parse_transform,sys_pre_attributes}' \ +'{attribute,insert,app_vsn,"cosProperty_$(COSPROPERTY_VSN)"}' # ----------------------------------------------------# Targets# ----------------------------------------------------opt: $(TARGET_FILES) $(APP_TARGET) $(APPUP_TARGET)debug: @${MAKE} TYPE=debug optcleanb: rm -f $(TARGET_FILES) $(APP_TARGET) $(APPUP_TARGET) rm -f errs core *~clean: rm -f $(TARGET_FILES) $(GEN_FILES) $(APP_TARGET) $(APPUP_TARGET) rm -f errs core *~$(APP_TARGET): $(APP_SRC) sed -e 's;%VSN%;$(VSN);' $< > $@$(APPUP_TARGET): $(APPUP_SRC) ../vsn.mk sed -e 's;%VSN%;$(VSN);' $< > $@docs:# ----------------------------------------------------# Special Build Targets# ----------------------------------------------------$(GEN_ERL_FILES) $(GEN_HRL_FILES): CosProperty.idl erlc $(ERL_IDL_FLAGS) +'{cfgfile,"CosProperty.cfg"}' CosProperty.idl mv $(LOCAL_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) $(GEN_FILES) $(IDL_FILES) $(RELSYSDIR)/src $(INSTALL_DATA) $(ERL_FILES) $(HRL_FILES) $(GEN_ERL_FILES) $(IDL_FILES) $(RELSYSDIR)/src $(INSTALL_DIR) $(RELSYSDIR)/include $(INSTALL_DATA) $(GEN_HRL_FILES) $(RELSYSDIR)/includerelease_docs_spec:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -