mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-27 08:39:28 +08:00
24 lines
451 B
Makefile
24 lines
451 B
Makefile
|
#
|
||
|
# Makefile for test_fsync
|
||
|
#
|
||
|
# contrib/test_fsync/Makefile
|
||
|
|
||
|
PGFILEDESC = "test_fsync - test various disk sync methods"
|
||
|
PGAPPICON = win32
|
||
|
|
||
|
PROGRAM = test_fsync
|
||
|
OBJS = test_fsync.o
|
||
|
|
||
|
PG_LIBS = $(libpq_pgport)
|
||
|
|
||
|
ifdef USE_PGXS
|
||
|
PG_CONFIG = pg_config
|
||
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
||
|
include $(PGXS)
|
||
|
else
|
||
|
subdir = contrib/test_fsync
|
||
|
top_builddir = ../..
|
||
|
include $(top_builddir)/src/Makefile.global
|
||
|
include $(top_srcdir)/contrib/contrib-global.mk
|
||
|
endif
|