diff options
Diffstat (limited to 'lib/common_test/priv/Makefile.in')
-rw-r--r-- | lib/common_test/priv/Makefile.in | 131 |
1 files changed, 131 insertions, 0 deletions
diff --git a/lib/common_test/priv/Makefile.in b/lib/common_test/priv/Makefile.in new file mode 100644 index 0000000000..f144847a29 --- /dev/null +++ b/lib/common_test/priv/Makefile.in @@ -0,0 +1,131 @@ +# +# %CopyrightBegin% +# +# Copyright Ericsson AB 2003-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% +# + +.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 run_test.in +SCRIPTS = install.sh + +# +# Rules +# + +include ../../test_server/vsn.mk +debug opt: + sed -e 's;@CT_VSN@;$(VSN);' \ + -e 's;@TS_VSN@;$(TEST_SERVER_VSN);' \ + ../install.sh.in > install.sh + chmod 775 install.sh + +docs: + +clean: + rm -f $(SCRIPTS) + + +# ---------------------------------------------------- +# Release Target +# ---------------------------------------------------- +include $(ERL_TOP)/make/otp_release_targets.mk + +ifeq ($(XNIX),true) +release_spec: opt + $(INSTALL_DIR) $(RELSYSDIR)/priv/bin + $(INSTALL_SCRIPT) $(SCRIPTS) $(RELSYSDIR) + $(INSTALL_DATA) $(FILES) $(RELSYSDIR)/priv +else +release_spec: opt + $(INSTALL_DIR) $(RELSYSDIR)/priv/bin + $(INSTALL_SCRIPT) $(SCRIPTS) $(RELSYSDIR) + $(INSTALL_DATA) $(FILES) $(RELSYSDIR)/priv +endif + +release_docs_spec: + +else + +# ==================================================== +# WIN32 +# ==================================================== + +# +# Files +# +FILES = vts.tool + +# +# Rules +# + +debug opt: + +docs: + +clean: + + +# ---------------------------------------------------- +# Release Target +# ---------------------------------------------------- +include $(ERL_TOP)/make/otp_release_targets.mk + +release_spec: opt + $(INSTALL_DIR) $(RELSYSDIR)/priv/bin + $(INSTALL_DATA) $(FILES) $(RELSYSDIR)/priv + +release_docs_spec: + +endif |