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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
// -*- mode:doc; -*-
// vim: set syntax=asciidoc:
Infrastructure for host packages
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[[host-package-tutorial]]
First, let's see how to write a +Makefile+ for an host only package, required
by another target package to build, with an example:
------------------------
01: # This file is part of the OpenADK project. OpenADK is copyrighted
02: # material, please see the LICENCE file in the top-level directory.
03:
04: include $(ADK_TOPDIR)/rules.mk
05:
06: PKG_NAME:= hostfoo
07: PKG_VERSION:= 1.0
08: PKG_RELEASE:= 1
09: PKG_HASH:= 62333167b79afb0b25a843513288c67b59547acf653e8fbe62ee64e71ebd1587
10: PKG_DESCR:= hostfoo utility
11: PKG_SECTION:= misc
12: PKG_URL:= http://www.foo.org/
13: PKG_SITES:= http://download.foo.org/
14:
15: PKG_CFLINE_HOSTFOO:= depends on ADK_HOST_ONLY
16:
17: include $(ADK_TOPDIR)/mk/host.mk
18: include $(ADK_TOPDIR)/mk/package.mk
19:
20: $(eval $(call HOST_template,HOSTFOO,hostfoo,$(PKG_VERSION)-${PKG_RELEASE}))
21:
22: HOST_STYLE:= auto
23:
24: include ${ADK_TOPDIR}/mk/host-bottom.mk
25: include ${ADK_TOPDIR}/mk/pkg-bottom.mk
------------------------
The differences to a target package is the inclusion of +mk/host.mk+ in line 17 and
+mk/host-bottom.mk+ in line 24. Furthermore the HOST_template is called instead of
the PKG_template. The last difference is the usage of +PKG_CFLINE_HOSTFOO+ to mark
the package as host only package.
Following mix between host and target package is possible, too:
------------------------
01: # This file is part of the OpenADK project. OpenADK is copyrighted
02: # material, please see the LICENCE file in the top-level directory.
03:
04: include ${ADK_TOPDIR}/rules.mk
05:
06: PKG_NAME:= foo
07: PKG_VERSION:= 1.0
08: PKG_RELEASE:= 1
09: PKG_HASH:= 62333167b79afb0b25a843513288c67b59547acf653e8fbe62ee64e71ebd1587
10: PKG_DESCR:= foo tool
11: PKG_SECTION:= lang
12: PKG_BUILDDEP:= foo-host
13: PKG_URL:= http://www.foo.org/
14: PKG_SITES:= http://download.foo.org/
15:
16: include ${ADK_TOPDIR}/mk/host.mk
17: include ${ADK_TOPDIR}/mk/package.mk
18:
19: $(eval $(call HOST_template,FOO,foo,${PKG_VERSION}-${PKG_RELEASE}))
20: $(eval $(call PKG_template,FOO,foo,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
21:
22: HOST_STYLE:= auto
23:
24: foo-install:
25: ${INSTALL_DIR} ${IDIR_FOO}/usr/bin
26: ${INSTALL_BIN} ${WRKINST}/usr/bin/foo ${IDIR_FOO}/usr/bin
27:
28: include ${ADK_TOPDIR}/mk/host-bottom.mk
29: include ${ADK_TOPDIR}/mk/pkg-bottom.mk
------------------------
If you need to rebuild a mixed package, you can do:
------------
$ make package=<package> hostclean hostpackage clean package
------------
If your host package have some dependencies, use following:
------------
HOST_BUILDDEP:=libbaz-host bar-host
------------
|