2011-01-22 08:27:25 +08:00
|
|
|
# contrib/pg_test_fsync/Makefile
|
2011-01-22 01:47:54 +08:00
|
|
|
|
2011-01-22 08:27:25 +08:00
|
|
|
PGFILEDESC = "pg_test_fsync - test various disk sync methods"
|
2011-01-22 01:47:54 +08:00
|
|
|
PGAPPICON = win32
|
|
|
|
|
2011-01-22 08:27:25 +08:00
|
|
|
PROGRAM = pg_test_fsync
|
|
|
|
OBJS = pg_test_fsync.o
|
2011-01-22 01:47:54 +08:00
|
|
|
|
|
|
|
ifdef USE_PGXS
|
|
|
|
PG_CONFIG = pg_config
|
|
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
|
|
include $(PGXS)
|
|
|
|
else
|
2011-01-22 08:27:25 +08:00
|
|
|
subdir = contrib/pg_test_fsync
|
2011-01-22 01:47:54 +08:00
|
|
|
top_builddir = ../..
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
|
|
endif
|