aboutsummaryrefslogtreecommitdiff
path: root/src/mk/postgres.subdir.mk
diff options
context:
space:
mode:
Diffstat (limited to 'src/mk/postgres.subdir.mk')
-rw-r--r--src/mk/postgres.subdir.mk21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/mk/postgres.subdir.mk b/src/mk/postgres.subdir.mk
new file mode 100644
index 00000000000..4cd22439e03
--- /dev/null
+++ b/src/mk/postgres.subdir.mk
@@ -0,0 +1,21 @@
+#-------------------------------------------------------------------------
+#
+# postgres.lib.mk--
+# include this to do recursive make on the subdirectories specified in
+# SUBDIR.
+#
+# Copyright (c) 1994-5, Regents of the University of California
+#
+#
+# IDENTIFICATION
+# $Header: /cvsroot/pgsql/src/mk/Attic/postgres.subdir.mk,v 1.1.1.1 1996/07/09 06:22:19 scrappy Exp $
+#
+#-------------------------------------------------------------------------
+
+.PHONY: all
+
+.DEFAULT all:
+ @for dir in $(SUBDIR); do \
+ echo "===> $$dir"; \
+ $(MAKE) -C $$dir --no-print-directory $@; \
+ done