diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-07-09 06:22:35 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-07-09 06:22:35 +0000 |
commit | d31084e9d1118b25fd16580d9d8c2924b5740dff (patch) | |
tree | 3179e66307d54df9c7b966543550e601eb55e668 /src/mk/postgres.subdir.mk | |
download | postgresql-PG95-1_01.tar.gz postgresql-PG95-1_01.zip |
Postgres95 1.01 Distribution - Virgin SourcesPG95-1_01
Diffstat (limited to 'src/mk/postgres.subdir.mk')
-rw-r--r-- | src/mk/postgres.subdir.mk | 21 |
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 |