From 9313a8d89f77ec489dbdb75c39ed4ed56222fcbd Mon Sep 17 00:00:00 2001
From: Christopher Spinrath <admin@spinrath.net>
Date: Thu, 25 Sep 2014 14:01:16 +0200
Subject: [PATCH] Korrekte PHONY targets

---
 Makefile | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 5165b59..a2a4506 100644
--- a/Makefile
+++ b/Makefile
@@ -198,4 +198,9 @@ config $(CONFIG_FILE):
 config_clean:
 	$(RM) $(CONFIG_FILE)
 
-.PHONY : config config_clean iso_clean initrd_clean rootfs_clean apt_cache_clean
+ISO_PHONY=iso_download iso_content iso_clean
+ROOTFS_PHONY=rootfs_unsquash rootfs_prepare rootfs_remaster rootfs_finalize rootfs_checksums rootfs_deduplicate rootfs_squash rootfs_clean
+INITRD_PHONY=initrd_unpack initrd_remaster initrd_pack initrd_clean
+APT_CACHE_PHONY=apt_cache apt_cache_clean
+
+.PHONY : workspace config config_clean $(ISO_PHONY) $(ROOTFS_PHONY) $(INITRD_PHONY) $(APT_CACHE_PHONY)
-- 
GitLab