summaryrefslogtreecommitdiff
path: root/docs/adding-packages-host.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/adding-packages-host.txt')
-rw-r--r--docs/adding-packages-host.txt20
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/adding-packages-host.txt b/docs/adding-packages-host.txt
index c9eba6d02..bf7ff7158 100644
--- a/docs/adding-packages-host.txt
+++ b/docs/adding-packages-host.txt
@@ -13,7 +13,7 @@ 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 $(TOPDIR)/rules.mk
+04: include $(ADK_TOPDIR)/rules.mk
05:
06: PKG_NAME:= hostfoo
07: PKG_VERSION:= 1.0
@@ -26,15 +26,15 @@ by another target package to build, with an example:
14:
15: PKG_CFLINE_HOSTFOO:= depends on ADK_HOST_ONLY
16:
-17: include $(TOPDIR)/mk/host.mk
-18: include $(TOPDIR)/mk/package.mk
+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 ${TOPDIR}/mk/host-bottom.mk
-25: include ${TOPDIR}/mk/pkg-bottom.mk
+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
@@ -47,7 +47,7 @@ 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 ${TOPDIR}/rules.mk
+04: include ${ADK_TOPDIR}/rules.mk
05:
06: PKG_NAME:= foo
07: PKG_VERSION:= 1.0
@@ -59,8 +59,8 @@ Following mix between host and target package is possible, too:
13: PKG_URL:= http://www.foo.org/
14: PKG_SITES:= http://download.foo.org/
15:
-16: include ${TOPDIR}/mk/host.mk
-17: include ${TOPDIR}/mk/package.mk
+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}))
@@ -71,8 +71,8 @@ Following mix between host and target package is possible, too:
25: ${INSTALL_DIR} ${IDIR_FOO}/usr/bin
26: ${INSTALL_BIN} ${WRKINST}/usr/bin/foo ${IDIR_FOO}/usr/bin
27:
-28: include ${TOPDIR}/mk/host-bottom.mk
-29: include ${TOPDIR}/mk/pkg-bottom.mk
+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: