mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
0ffc201a51
Prominent binaries already had this metadata. A handful of minor binaries, such as pg_regress.exe, still lack it; efforts to eliminate such exceptions are welcome. Michael Paquier, reviewed by MauMau.
32 lines
843 B
Makefile
32 lines
843 B
Makefile
# contrib/pg_xlogdump/Makefile
|
|
|
|
PGFILEDESC = "pg_xlogdump - decode and display WAL"
|
|
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
|
|
$(error "pg_xlogdump cannot be built with PGXS")
|
|
endif
|
|
|
|
subdir = contrib/pg_xlogdump
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
|
|
|
|
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) $< .
|