summaryrefslogtreecommitdiffstats
path: root/rules/post/zzz-images.make
blob: ff0ae36b689af36b795dd7ed2d29a467f0b1a063 (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) 2003-2010 by the ptxdist project <ptxdist@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.
#

#
# create all requested images and clean up when done
#
PHONY += images
images: world $(SEL_ROOTFS-y)
	@echo "Clean up temp working directory"
	@rm -rf \
		$(STATEDIR)/image_working_dir \
		$(image/permissions) \
		$(image/work_dir)

#
# trick to supress the message:
# "make: Nothing to be done for `images_world'."
#
PHONY += images_world_dep
images_world_dep:
	@true

images_world: $(STATEDIR)/world.targetinstall images_world_dep

# vim: syntax=make