
MODULE_big = txid
SRCS = txid.c
OBJS = $(SRCS:.c=.o)
DATA = txid.sql

PGXS := $(shell pg_config --pgxs)
include $(PGXS)

# local testing
xsql: z.txid.sql
z.txid.sql: txid.sql
	sed "s,.libdir,`pwd`,g" < $< > $@

