mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
Clean up temp installations after client program tests.
Commit 7d0f493f19
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.
This commit is contained in:
parent
1a917ae861
commit
49137ec9d4
@ -53,12 +53,11 @@ uninstall:
|
||||
|
||||
clean distclean maintainer-clean:
|
||||
rm -f initdb$(X) $(OBJS) encnames.c localtime.c
|
||||
|
||||
rm -rf tmp_check
|
||||
|
||||
# ensure that changes in datadir propagate into object file
|
||||
initdb.o: initdb.c $(top_builddir)/src/Makefile.global
|
||||
|
||||
|
||||
check: all
|
||||
$(prove_check)
|
||||
|
||||
|
@ -48,6 +48,7 @@ clean distclean maintainer-clean:
|
||||
rm -f pg_basebackup$(X) pg_receivexlog$(X) pg_recvlogical$(X) \
|
||||
pg_basebackup.o pg_receivexlog.o pg_recvlogical.o \
|
||||
$(OBJS)
|
||||
rm -rf tmp_check
|
||||
|
||||
check: all
|
||||
$(prove_check)
|
||||
|
@ -47,6 +47,7 @@ uninstall:
|
||||
|
||||
clean distclean maintainer-clean:
|
||||
rm -f pg_config$(X) $(OBJS)
|
||||
rm -rf tmp_check
|
||||
|
||||
check: all
|
||||
$(prove_check)
|
||||
|
@ -33,6 +33,7 @@ uninstall:
|
||||
|
||||
clean distclean maintainer-clean:
|
||||
rm -f pg_controldata$(X) $(OBJS)
|
||||
rm -rf tmp_check
|
||||
|
||||
check: all
|
||||
$(prove_check)
|
||||
|
@ -36,6 +36,7 @@ uninstall:
|
||||
|
||||
clean distclean maintainer-clean:
|
||||
rm -f pg_ctl$(X) $(OBJS)
|
||||
rm -rf tmp_check
|
||||
|
||||
check: all
|
||||
$(prove_check)
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user