aboutsummaryrefslogtreecommitdiff
path: root/tools/depends/target/mysql/Makefile
blob: 89a7a0452cb840c152f8be3cd6e4375a3e28167d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
include ../../Makefile.include
DEPS= ../../Makefile.include Makefile 01-mysqlclient-cross-compile.patch 02-mysqlclient-ios.patch 03-mysqlclient-android.patch 04-strnlen.patch 05-mysqlclient-ios64.patch 06-fixsslcheck.patch 07-no-endpwent.patch

# lib name, version
LIBNAME=mysql
VERSION=5.1.55
SOURCE=$(LIBNAME)-$(VERSION)
ARCHIVE=$(SOURCE).tar.gz

# configuration settings
CONFIGURE=cp -f $(CONFIG_SUB) $(CONFIG_GUESS) .; \
          ./configure --prefix=$(PREFIX) --build=$(BUILD) \
	--enable-thread-safe-client --with-extra-charsets=complex \
	--with-named-thread-libs=-lc --with-named-curses-libs=-lncurses \
	--with-libedit \
	--without-server --without-bench --without-docs --without-man --disable-shared \
	--with-ssl=$(PREFIX) LIBS="-ldl -lz"

LIBDYLIB=$(PLATFORM)/lib$(LIBNAME)/.libs/lib$(LIBNAME)client.a

CLEAN_FILES=$(ARCHIVE) $(PLATFORM)

all: .installed-$(PLATFORM)

$(TARBALLS_LOCATION)/$(ARCHIVE):
	cd $(TARBALLS_LOCATION); $(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE)

$(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS)
	rm -rf $(PLATFORM)/*; mkdir -p $(PLATFORM)
	cd $(PLATFORM); $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE)
	cd $(PLATFORM); patch -Np1 -i ../01-mysqlclient-cross-compile.patch
	cd $(PLATFORM); patch -Np1 -i ../02-mysqlclient-ios.patch
	cd $(PLATFORM); patch -Np1 -i ../03-mysqlclient-android.patch
	cd $(PLATFORM); patch -p0 < ../04-strnlen.patch
	cd $(PLATFORM); patch -p1 < ../05-mysqlclient-ios64.patch
	cd $(PLATFORM); patch -p0 < ../06-fixsslcheck.patch
	cd $(PLATFORM); patch -p0 < ../07-no-endpwent.patch
	cd $(PLATFORM); $(AUTORECONF) -vif
	cd $(PLATFORM); $(CONFIGURE)

$(LIBDYLIB): $(PLATFORM)
	$(MAKE) -C $(PLATFORM)/include
	$(MAKE) -C $(PLATFORM)/libmysql

.installed-$(PLATFORM): $(LIBDYLIB)
	$(MAKE) -C $(PLATFORM)/libmysql install
	$(MAKE) -C $(PLATFORM)/scripts/ install-binSCRIPTS
	$(MAKE) -C $(PLATFORM)/include/ install
	touch $@

clean:
	$(MAKE) -C $(PLATFORM) clean
	rm -f .installed-$(PLATFORM)

distclean::
	rm -rf $(PLATFORM) .installed-$(PLATFORM)