mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
e5bf0c376e
rmgrdesc.c is not auto-generated now, though it apparently was the last time the Makefile was updated.
33 lines
847 B
Makefile
33 lines
847 B
Makefile
# contrib/pg_xlogdump/Makefile
|
|
|
|
PGFILEDESC = "pg_xlogdump"
|
|
PGAPPICON=win32
|
|
|
|
PROGRAM = pg_xlogdump
|
|
OBJS = pg_xlogdump.o compat.o xlogreader.o rmgrdesc.o \
|
|
$(RMGRDESCOBJS) $(WIN32RES)
|
|
|
|
RMGRDESCSOURCES = $(notdir $(wildcard $(top_srcdir)/src/backend/access/rmgrdesc/*desc.c))
|
|
RMGRDESCOBJS = $(patsubst %.c,%.o,$(RMGRDESCSOURCES))
|
|
|
|
EXTRA_CLEAN = $(RMGRDESCSOURCES) xlogreader.c
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/pg_xlogdump
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|
|
|
|
override CPPFLAGS := -DFRONTEND $(CPPFLAGS)
|
|
|
|
xlogreader.c: % : $(top_srcdir)/src/backend/access/transam/%
|
|
rm -f $@ && $(LN_S) $< .
|
|
|
|
$(RMGRDESCSOURCES): % : $(top_srcdir)/src/backend/access/rmgrdesc/%
|
|
rm -f $@ && $(LN_S) $< .
|