diff options
author | Tom Lane | 2014-04-25 19:40:35 +0000 |
---|---|---|
committer | Tom Lane | 2014-04-25 19:40:35 +0000 |
commit | 49137ec9d469f744289d0dfa2487a7fc1ef217cb (patch) | |
tree | a8a8a329e0a05e4aec673a346f941e45f42d34fb /src/bin/scripts | |
parent | 1a917ae8610d44985fd2027da0cfe60ccece9104 (diff) |
Clean up temp installations after client program tests.
Commit 7d0f493f19607774fdccb1a1ea06fdd96a3d9698 added infrastructure
to perform tests in assorted src/bin/ subdirectories, but forgot to
teach "make clean" to clean up the detritus the tests leave behind.
Diffstat (limited to 'src/bin/scripts')
-rw-r--r-- | src/bin/scripts/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bin/scripts/Makefile b/src/bin/scripts/Makefile index de0e11f7142..eeb2539d372 100644 --- a/src/bin/scripts/Makefile +++ b/src/bin/scripts/Makefile @@ -63,12 +63,11 @@ installdirs: uninstall: rm -f $(addprefix '$(DESTDIR)$(bindir)'/, $(addsuffix $(X), $(PROGRAMS))) - clean distclean maintainer-clean: rm -f $(addsuffix $(X), $(PROGRAMS)) $(addsuffix .o, $(PROGRAMS)) rm -f common.o dumputils.o kwlookup.o keywords.o print.o mbprint.o $(WIN32RES) rm -f dumputils.c print.c mbprint.c kwlookup.c keywords.c - + rm -rf tmp_check check: all $(prove_check) |