Make 'all' default src/backend/distributed target

Otherwise typing 'make' will just build citusdb--5.0.sql, not
particularly helpful.
pull/340/head
Andres Freund 2016-02-16 12:45:59 +01:00 committed by Jason Petersen
parent 93caee2929
commit 974a121d50
No known key found for this signature in database
GPG Key ID: 9F1D3510D110ABA9
1 changed files with 3 additions and 3 deletions

View File

@ -18,13 +18,13 @@ SUBDIRS = . commands executor master planner relay test utils worker
OBJS += \ OBJS += \
$(patsubst $(citus_abs_srcdir)/%.c,%.o,$(foreach dir,$(SUBDIRS), $(wildcard $(citus_abs_srcdir)/$(dir)/*.c))) $(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 # define build process for latest install file
$(EXTENSION)--$(EXTVERSION).sql: $(EXTENSION).sql $(EXTENSION)--$(EXTVERSION).sql: $(EXTENSION).sql
cat $^ > $@ cat $^ > $@
# be explicit about the default target
all:
NO_PGXS = 1 NO_PGXS = 1
SHLIB_LINK = $(libpq) SHLIB_LINK = $(libpq)