#!/usr/bin/make -f

CFLAGS = $(shell /usr/lib/postgresql/8.3/bin/pg_config --cflags)
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
	CFLAGS += -O0
else
	CFLAGS += -O2
endif

PGXS83 = $(shell /usr/lib/postgresql/8.3/bin/pg_config --pgxs)

build:

clean:
	dh_testdir
	dh_testroot
	$(MAKE) clean USE_PGXS=1 PGXS="$(PGXS83)"
	dh_clean 

install: build
	dh_testdir
	dh_testroot
	dh_clean -k 
	dh_installdirs
	$(MAKE) CFLAGS="$(CFLAGS)" USE_PGXS=1 PGXS="$(PGXS83)"
	dh_install -ppostgresql-8.3-prefix

binary-indep: build install
binary-arch: build install
	dh_testdir
	dh_testroot
	dh_installchangelogs
	dh_installdocs
	dh_link
	dh_strip
	dh_compress
	dh_fixperms
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install
