author: kx <kx@radix.pro> 2023-12-23 21:57:15 +0300
committer: kx <kx@radix.pro> 2023-12-23 21:57:15 +0300
commit: 9fa7e30353b4f53f9532d6836cd86e2cfb5fd92a
parent: b54c044cd4ac542e145ae3a4f17233d32d3ba07e
Commit Summary:
Diffstat:
1 file changed, 18 insertions, 0 deletions
diff --git a/packages/x/lightdm/Makefile b/packages/x/lightdm/Makefile
new file mode 100644
index 0000000..5923a6e
--- /dev/null
+++ b/packages/x/lightdm/Makefile
@@ -0,0 +1,25 @@
+
+#
+# Following command helps to cheate SUBDIRS list:
+# $ tree -fid .
+#
+
+SUBDIRS := lightdm \
+ lightdm-gtk-greeter
+
+
+all-recursive downloads_clean-recursive:
+ @set fnord $(MAKEFLAGS); amf=$$2; \
+ target=`echo $@ | sed s/-recursive//`; \
+ list='$(SUBDIRS)'; for subdir in $$list; do \
+ echo "Making $$target in $$subdir"; \
+ local_target="$$target"; \
+ (cd $$subdir && $(MAKE) $$fnord $$local_target) \
+ || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
+ done; test -z "$$fail"
+
+all: all-recursive
+
+downloads_clean: downloads_clean-recursive
+
+.PHONY: all-recursive downloads_clean-recursive all downloads_clean