summaryrefslogtreecommitdiffstats
path: root/rules/kernel-production.make
blob: 21caeb025186b1560b043f463a3e933300fc0be3 (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
# -*-makefile-*-
#
# Copyright (C) 2009 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.
#

ifdef PTXCONF_PROJECT_USE_PRODUCTION

$(STATEDIR)/kernel.extract:
	@$(call targetinfo)
	@$(call touch)

$(STATEDIR)/kernel.prepare:
	@$(call targetinfo)
	@$(call touch)

$(STATEDIR)/kernel.compile:
	@$(call targetinfo)
	@$(call touch)

kernel_clean:
	@rm -rf $(STATEDIR)/kernel.* $(STATEDIR)/kernel-modules.*
	@rm -rf $(PKGDIR)/kernel_* $(PKGDIR)/kernel-modules_*

endif

# vim: syntax=make