summaryrefslogtreecommitdiffstats
path: root/rules/host-mysql.make
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2015-06-02 15:37:01 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2015-06-02 17:41:12 +0200
commit7e3cd4d1d83c24ff5070fea5b6789936351a880a (patch)
tree3d8b52254069d8b9252f16b8594436873d4f6b5a /rules/host-mysql.make
parent2bc0309a1c3f9012b4617285499d45844cc997ec (diff)
downloadptxdist-7e3cd4d1d83c24ff5070fea5b6789936351a880a.tar.gz
ptxdist-7e3cd4d1d83c24ff5070fea5b6789936351a880a.tar.xz
mysql: remove after more than one year in staging
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/host-mysql.make')
-rw-r--r--rules/host-mysql.make72
1 files changed, 0 insertions, 72 deletions
diff --git a/rules/host-mysql.make b/rules/host-mysql.make
deleted file mode 100644
index 9a000b011..000000000
--- a/rules/host-mysql.make
+++ /dev/null
@@ -1,72 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2006 by Robert Schwebel
-#
-# See CREDITS for details about who has contributed to this project.
-#
-# For further information about the PTXdist project and license conditions
-# see the README file.
-#
-
-#
-# We provide this package
-#
-HOST_PACKAGES-$(PTXCONF_HOST_MYSQL) += host-mysql
-
-#
-# Paths and names
-#
-HOST_MYSQL = $(MYSQL)
-HOST_MYSQL_DIR = $(HOST_BUILDDIR)/$(HOST_MYSQL)
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-HOST_MYSQL_PATH := PATH=$(HOST_PATH)
-HOST_MYSQL_ENV := $(HOST_ENV)
-
-#
-# autoconf
-#
-HOST_MYSQL_AUTOCONF := $(HOST_AUTOCONF)
-
-# ----------------------------------------------------------------------------
-# Compile
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/host-mysql.compile:
- @$(call targetinfo)
-
- # we need a comp_err tool
- cd $(HOST_MYSQL_DIR)/include && $(HOST_MYSQL_PATH) $(MAKE)
- cd $(HOST_MYSQL_DIR)/mysys && $(HOST_MYSQL_PATH) $(MAKE) libmysys.a
- cd $(HOST_MYSQL_DIR)/dbug && $(HOST_MYSQL_PATH) $(MAKE) libdbug.a
- cd $(HOST_MYSQL_DIR)/strings && $(HOST_MYSQL_PATH) $(MAKE) libmystrings.a
- cd $(HOST_MYSQL_DIR)/extra && $(HOST_MYSQL_PATH) $(MAKE) comp_err
-
- # we need sql/gen_lex_hash
- cd $(HOST_MYSQL_DIR)/storage/myisam && $(HOST_MYSQL_PATH) $(MAKE) libmyisam.a
- cd $(HOST_MYSQL_DIR)/storage/myisammrg && $(HOST_MYSQL_PATH) $(MAKE) libmyisammrg.a
- cd $(HOST_MYSQL_DIR)/storage/heap && $(HOST_MYSQL_PATH) $(MAKE) libheap.a
- cd $(HOST_MYSQL_DIR)/vio && $(HOST_MYSQL_PATH) $(MAKE) libvio.a
- cd $(HOST_MYSQL_DIR)/regex && $(HOST_MYSQL_PATH) $(MAKE) libregex.a
- cd $(HOST_MYSQL_DIR)/sql && $(HOST_MYSQL_PATH) $(MAKE) gen_lex_hash
-
- # we need dbug/factorial
- cd $(HOST_MYSQL_DIR)/dbug && $(HOST_MYSQL_PATH) $(MAKE) factorial
-
- @$(call touch)
-
-# ----------------------------------------------------------------------------
-# Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/host-mysql.install:
- @$(call targetinfo)
- @install -m 755 -D $(HOST_MYSQL_DIR)/extra/comp_err $(HOST_MYSQL_PKGDIR)/bin/comp_err
- @install -m 755 -D $(HOST_MYSQL_DIR)/sql/gen_lex_hash $(HOST_MYSQL_PKGDIR)/bin/gen_lex_hash
- @install -m 755 -D $(HOST_MYSQL_DIR)/dbug/factorial $(HOST_MYSQL_PKGDIR)/bin/factorial
- @$(call touch)
-
-# vim: syntax=make