# # pg_repack: lib/Makefile # # Portions Copyright (c) 2008-2012, NIPPON TELEGRAPH AND TELEPHONE CORPORATION # Portions Copyright (c) 2011, Itagaki Takahiro # MODULE_big = pg_repack OBJS = repack.o pgut/pgut-be.o pgut/pgut-spi.o EXTENSION = pg_repack # The version of the extension, read from the .control file. # Note that it doesn't need to be the same of the library version: it should # be increased only when the sql changes. EXTVER = $(shell grep -e '^default_version' $(EXTENSION).control \ | sed -e "s/[^']*'\([^']*\)'.*/\1/") #supports both EXTENSION (for >=9.1) and without_EXTENSION (for $@; \ echo "CREATE SCHEMA repack;\n" >> $@; \ sed 's,MODULE_PATHNAME,$$libdir/$(MODULE_big),g' $< >> $@; \ echo "\nCOMMIT;" >> $@; pg_repack--$(EXTVER).sql: pg_repack.sql.in echo '\echo Use "CREATE EXTENSION pg_repack" to load this file. \quit' > $@; \ cat $< >> $@;