diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-05-16 14:56:17 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-05-16 14:56:17 +0000 |
commit | cf11642e92fc585c7e1b290be2b1ea32b65e2404 (patch) | |
tree | 9fdd827a6c5a30dc90e823751ae41876fc5df289 | |
parent | bbf3748347574d838ebcc0a6f61ee6da7e70822b (diff) | |
download | postgresql-cf11642e92fc585c7e1b290be2b1ea32b65e2404.tar.gz postgresql-cf11642e92fc585c7e1b290be2b1ea32b65e2404.zip |
Undo collateral damage from recent patch: Makefile had
lost most of target list and thus 'make clean' didn't clean up very well.
-rw-r--r-- | contrib/spi/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/contrib/spi/Makefile b/contrib/spi/Makefile index 5d85b2638e0..e4deb393d43 100644 --- a/contrib/spi/Makefile +++ b/contrib/spi/Makefile @@ -9,7 +9,11 @@ ifdef REFINT_VERBOSE CFLAGS+= -DREFINT_VERBOSE endif -TARGETS= refint$(DLSUFFIX) refint.sql +TARGETS= refint$(DLSUFFIX) refint.sql \ + timetravel$(DLSUFFIX) timetravel.sql \ + autoinc$(DLSUFFIX) autoinc.sql \ + moddatetime$(DLSUFFIX) moddatetime.sql \ + insert_username$(DLSUFFIX) insert_username.sql CLEANFILES+= $(TARGETS) @@ -21,5 +25,5 @@ all:: $(TARGETS) sed -e "s:_OBJWD_:$$C:g" \ -e "s:_DLSUFFIX_:$(DLSUFFIX):g" < $< > $@ -clean: - rm -f $(TARGETS) +clean: + rm -f $(TARGETS) *.o |