diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-07-15 03:33:14 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-07-15 03:33:14 +0000 |
| commit | a7143b3088aef0f82aa299aecdad8462ff74d23a (patch) | |
| tree | 9b7a36b6b83890b9d7b9026994bfe5faa6182533 /contrib/tsearch2 | |
| parent | 2d11d26113dd88072e09f92ad3f2032a27e4d8ce (diff) | |
| download | postgresql-a7143b3088aef0f82aa299aecdad8462ff74d23a.tar.gz | |
Fix some makefiles that fail to yield good results from 'make -qp'.
This doesn't really matter for ordinary building of Postgres, but it's
useful for automated checks, such as my just-committed pgcheckdefines.
Diffstat (limited to 'contrib/tsearch2')
| -rw-r--r-- | contrib/tsearch2/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/tsearch2/Makefile b/contrib/tsearch2/Makefile index 393e3fa902..c529f2b505 100644 --- a/contrib/tsearch2/Makefile +++ b/contrib/tsearch2/Makefile @@ -1,4 +1,4 @@ -# $PostgreSQL: pgsql/contrib/tsearch2/Makefile,v 1.15 2006/05/31 14:05:31 teodor Exp $ +# $PostgreSQL: pgsql/contrib/tsearch2/Makefile,v 1.16 2006/07/15 03:33:14 tgl Exp $ MODULE_big = tsearch2 OBJS = dict_ex.o dict.o snmap.o stopword.o common.o prs_dcfg.o \ @@ -37,6 +37,8 @@ endif $(SUBDIROBJS): $(SUBDIRS:%=%-recursive) ; +.PHONY: $(SUBDIRS:%=%-recursive) + $(SUBDIRS:%=%-recursive): $(MAKE) -C $(subst -recursive,,$@) SUBSYS.o |
