1
0
mirror of https://github.com/postgrespro/pg_probackup.git synced 2025-02-08 14:28:36 +02:00

Rework Makefile and remove incoherent definitions

-DFRONTEND should be overridden as part of CPPFLAGS and it is not really
necessary to have the source list. The definition of pg_arman.h was rather
obscure as well.
This commit is contained in:
Michael Paquier 2016-01-13 22:47:49 +09:00
parent dc27aab59d
commit 49d37ecd3e
2 changed files with 18 additions and 22 deletions

View File

@ -1,23 +1,21 @@
PROGRAM = pg_arman
SRCS = \
backup.c \
catalog.c \
data.c \
delete.c \
dir.c \
fetch.c \
init.c \
parray.c \
pg_arman.c \
restore.c \
show.c \
status.c \
util.c \
validate.c \
xlog.c \
pgut/pgut.c \
pgut/pgut-port.c
OBJS = $(SRCS:.c=.o)
OBJS = backup.o \
catalog.o \
data.o \
delete.o \
dir.o \
fetch.o \
init.o \
parray.o \
pg_arman.o \
restore.o \
show.o \
status.o \
util.o \
validate.o \
xlog.o \
pgut/pgut.o \
pgut/pgut-port.o
DOCS = doc/pg_arman.txt
@ -32,6 +30,7 @@ endif # XMLTO
endif # ASCIIDOC
PG_CPPFLAGS = -I$(libpq_srcdir)
override CPPFLAGS := -DFRONTEND $(CPPFLAGS)
PG_LIBS = $(libpq_pgport)
REGRESS = init option show delete backup restore
@ -40,8 +39,6 @@ PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
$(OBJS): pg_arman.h
# Part related to documentation
# Compile documentation as well is ASCIIDOC and XMLTO are defined
ifneq ($(ASCIIDOC),)

View File

@ -7,7 +7,6 @@
*-------------------------------------------------------------------------
*/
#define FRONTEND
#include "postgres_fe.h"
#include "libpq/pqsignal.h"