summaryrefslogtreecommitdiffstats
path: root/rules/post/ptxd_make_world_compile.make
blob: e346e1a5df2690ed15603e8c5e7eeabde26cab0e (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
# -*-makefile-*-
#
# Copyright (C) 2008, 2009, 2010 by Marc Kleine-Budde <mkl@pengutronix.de>
#
# See CREDITS for details about who has contributed to this project.
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

world/compile = \
	+$(call world/env, $(1)) \
	ptxd_make_world_compile

compile = \
	+$(call world/env, $(1)) \
	pkg_make_opt="$(2)" \
	ptxd_make_world_compile

$(STATEDIR)/%.compile:
	@$(call targetinfo)
	@$(call world/compile, $(PTX_MAP_TO_PACKAGE_$(*)))
	@$(call touch)

# vim: syntax=make: