mirror of https://github.com/postgres/postgres
Reviewed-by: Michael Paquier <michael.paquier@gmail.com>pull/14/head
parent
f92fc4c95d
commit
00882d9e5c
@ -1,18 +0,0 @@ |
||||
# 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 $(WIN32RES)
|
||||
|
||||
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 |
@ -0,0 +1,27 @@ |
||||
# src/bin/pg_test_fsync/Makefile
|
||||
|
||||
PGFILEDESC = "pg_test_fsync - test various disk sync methods"
|
||||
PGAPPICON = win32
|
||||
|
||||
subdir = src/bin/pg_test_fsync
|
||||
top_builddir = ../../..
|
||||
include $(top_builddir)/src/Makefile.global |
||||
|
||||
OBJS = pg_test_fsync.o $(WIN32RES)
|
||||
|
||||
all: pg_test_fsync |
||||
|
||||
pg_test_fsync: $(OBJS) | submake-libpgport |
||||
$(CC) $(CFLAGS) $^ $(LDFLAGS) $(LDFLAGS_EX) $(LIBS) -o $@$(X)
|
||||
|
||||
install: all installdirs |
||||
$(INSTALL_PROGRAM) pg_test_fsync$(X) '$(DESTDIR)$(bindir)/pg_test_fsync$(X)'
|
||||
|
||||
installdirs: |
||||
$(MKDIR_P) '$(DESTDIR)$(bindir)'
|
||||
|
||||
uninstall: |
||||
rm -f '$(DESTDIR)$(bindir)/pg_test_fsync$(X)'
|
||||
|
||||
clean distclean maintainer-clean: |
||||
rm -f pg_test_fsync$(X) $(OBJS)
|
Loading…
Reference in new issue