summaryrefslogtreecommitdiffstats
path: root/rules/post/ptxd_make_world_compile.make
blob: 336b1ff3efed93a393e7bdc1bf04e75a9774be28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*-makefile-*-
#
# Copyright (C) 2008, 2009, 2010 by Marc Kleine-Budde <mkl@pengutronix.de>
#
# 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="$(call ptx/escape,$(2))" \
	ptxd_make_world_compile

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

# vim: syntax=make: