summaryrefslogtreecommitdiffstats
path: root/rules/post/ptxd_make_xpkg_finish.make
blob: 41b176cb7455a9e8300be5608131ad4c339bc143 (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
# -*-makefile-*-
#
# Copyright (C) 2009 by Marc Kleine-Budde <mkl@pengutronix.de>
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# install_finish
#
# finishes packet creation
#
# $1: packet label
#
install_finish = \
	$(call xpkg/finish, $(1))


#
# xpkg/finish
#
# finishes packet creation
#
# $1: xpkg label
#
xpkg/finish = \
	$(call xpkg/env, $(1))			\
	CROSS_COMPILE="$(COMPILER_PREFIX)"	\
	ptxd_make_xpkg_finish

# vim: syntax=make