aboutsummaryrefslogtreecommitdiffstats
path: root/apps/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'apps/Makefile')
-rw-r--r--apps/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/Makefile b/apps/Makefile
new file mode 100644
index 0000000..5916382
--- /dev/null
+++ b/apps/Makefile
@@ -0,0 +1,9 @@
+.POSIX:
+
+APPS =\
+ claws-mail
+
+include ../mk/xdestdir.mk
+
+.DEFAULT:
+ +set -e; for a in $(APPS); do (cd -- "$$a" && $(MAKE) DESTDIR="$(XDESTDIR)" "$@"); done