diff options
| author | Tom Lane | 2011-03-10 05:03:26 +0000 |
|---|---|---|
| committer | Tom Lane | 2011-03-10 05:04:05 +0000 |
| commit | 174f65ab00bb8de0f119a6a60d562b516ba71bba (patch) | |
| tree | f649991098c4b28941a60ae7f2a5cc50c7a267a6 /src/Makefile | |
| parent | 76fdee31c4ff74b7eae5965521a85d29381bcaec (diff) | |
Fix some oversights in distprep and maintainer-clean targets.
At least two recent commits have apparently imagined that a comment in
a Makefile stating that something would be included in the distribution
tarball was sufficient to make it so. They hadn't bothered to hook
into the upper maintainer-clean targets either. Per bug #5923 from
Charles Johnson, in which it emerged that the 9.1alpha4 tarballs are
short a few files that should be there.
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 4469d2cdf2c..a0460342e8a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -50,14 +50,19 @@ uninstall: uninstall-local uninstall-local: rm -f $(addprefix '$(DESTDIR)$(pgxsdir)/$(subdir)'/, Makefile.global Makefile.port Makefile.shlib nls-global.mk) +distprep: + $(MAKE) -C test/isolation $@ + clean: $(MAKE) -C test $@ $(MAKE) -C tutorial NO_PGXS=1 $@ + $(MAKE) -C test/isolation $@ $(MAKE) -C test/thread $@ distclean maintainer-clean: $(MAKE) -C test $@ $(MAKE) -C tutorial NO_PGXS=1 $@ + $(MAKE) -C test/isolation $@ $(MAKE) -C test/thread $@ rm -f Makefile.port Makefile.global |
