1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

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.
This commit is contained in:
Tom Lane
2011-01-21 19:27:25 -05:00
parent 0cf3db2175
commit bc616703e8
6 changed files with 45 additions and 45 deletions

View File

@ -1,22 +1,20 @@
#
# Makefile for test_fsync
# Makefile for pg_test_fsync
#
# contrib/test_fsync/Makefile
# contrib/pg_test_fsync/Makefile
PGFILEDESC = "test_fsync - test various disk sync methods"
PGFILEDESC = "pg_test_fsync - test various disk sync methods"
PGAPPICON = win32
PROGRAM = test_fsync
OBJS = test_fsync.o
PG_LIBS = $(libpq_pgport)
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/test_fsync
subdir = contrib/pg_test_fsync
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk