Makefile: Drop outdated "dist" target
authorChristoph Berg <myon@debian.org>
Thu, 7 Nov 2024 15:22:15 +0000 (15:22 +0000)
committerChristoph Berg <myon@debian.org>
Thu, 7 Nov 2024 15:22:15 +0000 (15:22 +0000)
Makefile

index 72a6afa42bcfaaaf2c8fe0f81550371ed91f5bc9..7ac762797d7ea7d90cd4fddbcc060a2e2731730b 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,3 @@
-# View README.pg_filedump.md first
-
-# note this must match version macros in pg_filedump.h
-FD_VERSION=17.0
-
 PROGRAM = pg_filedump
 OBJS = pg_filedump.o decode.o stringinfo.o
 REGRESS = datatypes float numeric xml toast
@@ -22,14 +17,3 @@ ifneq ($(findstring -llz4,$(LIBS)),)
 else
        LIBS = -L$(pkglibdir) -lpgcommon -lpgport
 endif
-
-DISTFILES= README.pg_filedump.md Makefile \
-       pg_filedump.h pg_filedump.c decode.h decode.c stringinfo.c
-
-dist:
-       rm -rf pg_filedump-${FD_VERSION} pg_filedump-${FD_VERSION}.tar.gz
-       mkdir pg_filedump-${FD_VERSION}
-       cp -p ${DISTFILES} pg_filedump-${FD_VERSION}
-       tar cfz pg_filedump-${FD_VERSION}.tar.gz pg_filedump-${FD_VERSION}
-       rm -rf pg_filedump-${FD_VERSION}
-