~ubuntu-branches/ubuntu/oneiric/postgresql-9.1/oneiric-security

« back to all changes in this revision

Viewing changes to contrib/pg_test_fsync/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2011-05-11 10:41:53 UTC
  • Revision ID: james.westby@ubuntu.com-20110511104153-psbh2o58553fv1m0
Tags: upstream-9.1~beta1
ImportĀ upstreamĀ versionĀ 9.1~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# contrib/pg_test_fsync/Makefile
 
2
 
 
3
PGFILEDESC = "pg_test_fsync - test various disk sync methods"
 
4
PGAPPICON = win32
 
5
 
 
6
PROGRAM  = pg_test_fsync
 
7
OBJS = pg_test_fsync.o
 
8
 
 
9
ifdef USE_PGXS
 
10
PG_CONFIG = pg_config
 
11
PGXS := $(shell $(PG_CONFIG) --pgxs)
 
12
include $(PGXS)
 
13
else
 
14
subdir = contrib/pg_test_fsync
 
15
top_builddir = ../..
 
16
include $(top_builddir)/src/Makefile.global
 
17
include $(top_srcdir)/contrib/contrib-global.mk
 
18
endif