postgresql/contrib/pg_test_fsync/Makefile
Tom Lane bc616703e8 Clean up pg_test_fsync commit.
Actually rename the program, rather than just claiming we did.  Hook it
into the build system.  Get rid of useless dependency on libpq.  Clean up
#include list and messy whitespace.
2011-01-21 19:27:25 -05:00

22 lines
442 B
Makefile

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