From 974a121d5068cb8fcabde14c7fd16ca43227d608 Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Tue, 16 Feb 2016 12:45:59 +0100 Subject: [PATCH] Make 'all' default src/backend/distributed target Otherwise typing 'make' will just build citusdb--5.0.sql, not particularly helpful. --- src/backend/distributed/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/backend/distributed/Makefile b/src/backend/distributed/Makefile index b01a9d01c..052800bbe 100644 --- a/src/backend/distributed/Makefile +++ b/src/backend/distributed/Makefile @@ -18,13 +18,13 @@ SUBDIRS = . commands executor master planner relay test utils worker OBJS += \ $(patsubst $(citus_abs_srcdir)/%.c,%.o,$(foreach dir,$(SUBDIRS), $(wildcard $(citus_abs_srcdir)/$(dir)/*.c))) +# be explicit about the default target +all: + # define build process for latest install file $(EXTENSION)--$(EXTVERSION).sql: $(EXTENSION).sql cat $^ > $@ -# be explicit about the default target -all: - NO_PGXS = 1 SHLIB_LINK = $(libpq)