blob: 924174e94a827ef2d2baa3cb7dc3f44092c829ca (
plain) (
tree)
|
|
#
# %CopyrightBegin%
#
# Copyright Ericsson AB 2003-2016. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# %CopyrightEnd%
#
.PHONY : debug opt release clean distclean depend
TARGET = @TARGET@
include $(ERL_TOP)/make/target.mk
include $(ERL_TOP)/make/$(TARGET)/otp.mk
include ../vsn.mk
VSN = $(COMMON_TEST_VSN)
# ----------------------------------------------------
# Release directory specification
# ----------------------------------------------------
ifdef TESTROOT
RELEASE_PATH=$(TESTROOT)
else
RELEASE_PATH=$(ERL_TOP)/release/$(TARGET)
endif
RELSYSDIR = $(RELEASE_PATH)/lib/common_test-$(VSN)
ifeq ($(findstring linux,$(TARGET)),linux)
XNIX = true
else
ifeq ($(findstring solaris,$(TARGET)),solaris)
XNIX = true
else
XNIX = false
endif
endif
ifneq ($(findstring win32,$(TARGET)),win32)
# ====================================================
# UNIX / LINUX
# ====================================================
#
# Files
#
FILES = vts.tool
SCRIPTS =
IMAGES = tile1.jpg
CSS = ct_default.css
JS = jquery-latest.js jquery.tablesorter.min.js
#
# Rules
#
debug opt:
docs:
clean:
$(V_at)rm -f $(SCRIPTS)
# ----------------------------------------------------
# Release Target
# ----------------------------------------------------
include $(ERL_TOP)/make/otp_release_targets.mk
ifeq ($(XNIX),true)
release_spec: opt
$(INSTALL_DIR) "$(RELSYSDIR)/priv"
$(INSTALL_DATA) $(FILES) $(IMAGES) $(CSS) $(JS) "$(RELSYSDIR)/priv"
else
release_spec: opt
$(INSTALL_DIR) "$(RELSYSDIR)/priv"
$(INSTALL_DATA) $(FILES) $(IMAGES) $(CSS) $(JS) "$(RELSYSDIR)/priv"
endif
release_docs_spec:
else
# ====================================================
# WIN32
# ====================================================
#
# Files
#
FILES = vts.tool
IMAGES = tile1.jpg
CSS = ct_default.css
JS = jquery-latest.js jquery.tablesorter.min.js
#
# Rules
#
debug opt:
docs:
clean:
# ----------------------------------------------------
# Release Target
# ----------------------------------------------------
include $(ERL_TOP)/make/otp_release_targets.mk
release_spec: opt
$(INSTALL_DIR) "$(RELSYSDIR)/priv"
$(INSTALL_DATA) $(FILES) $(IMAGES) $(CSS) $(JS) "$(RELSYSDIR)/priv"
release_docs_spec:
endif
|