diff options
Diffstat (limited to 'config')
-rwxr-xr-x | config | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -19,11 +19,21 @@ main() for arch in ${PKG_TARGETS}; do PKG_TARGET_ARCH="${arch}" configure_build done - >targets.mk - printf 'targets =' >>targets.mk + printf 'targets =' >targets.mk for arch in ${PKG_TARGETS}; do printf ' \\\n\t%s' "${arch}" >>targets.mk done + for step in configure build install; do + for type in native cross; do + printf '\n%s_%s_stamps =' \ + "${step}" "${type}" >>targets.mk + for arch in ${PKG_TARGETS}; do + printf ' \\\n\t%s-%s_%s' \ + "${step}" "${type}" \ + "${arch}" >>targets.mk + done + done + done printf '\n' >>targets.mk ;; esac |