X-Git-Url: http://www.sigaev.ru/git/gitweb.cgi?p=hstore.git;a=blobdiff_plain;f=Makefile;fp=Makefile;h=125a29be908e747769bd121b8d4e4e620c2014ed;hp=0000000000000000000000000000000000000000;hb=2d3cb5062568eab105ed554350ac99bae76ee0ec;hpb=77af220c462dd61507d6cca9b9f54ad3e102e1b6 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..125a29b --- /dev/null +++ b/Makefile @@ -0,0 +1,35 @@ +# contrib/hstore/Makefile + +MODULE_big = hstore +OBJS = hstore_io.o hstore_op.o hstore_gist.o hstore_gin.o hstore_compat.o \ + hstore_gram.o hstore_support.o + +EXTENSION = hstore +DATA = hstore--1.3.sql hstore--1.0--1.1.sql hstore--1.1--1.2.sql \ + hstore--1.2--1.3.sql hstore--unpackaged--1.0.sql + +REGRESS = hstore nested types + +EXTRA_CLEAN = y.tab.c y.tab.h \ + hstore_gram.c hstore_scan.c hstore_gram.h + +ifdef USE_PGXS +PG_CONFIG = pg_config +PGXS := $(shell $(PG_CONFIG) --pgxs) +include $(PGXS) +else +subdir = contrib/hstore +top_builddir = ../.. +include $(top_builddir)/src/Makefile.global +include $(top_srcdir)/contrib/contrib-global.mk +endif + +hstore_gram.o: hstore_scan.c + +hstore_gram.c: BISONFLAGS += -d + +distprep: hstore_gram.c hstore_scan.c + +maintainer-clean: + rm -f hstore_gram.c hstore_scan.c hstore_gram.h +