postgresql/contrib/pg_test_fsync/Makefile

19 lines
409 B
Makefile
Raw Normal View History

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