From 30911edb7aa0e2938041b4bff1f4d7568b87b1d2 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Wed, 24 Jul 2024 20:39:52 -0700 Subject: [PATCH] Simplified makefile --- Makefile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 988fb5f..f47cf4e 100644 --- a/Makefile +++ b/Makefile @@ -38,15 +38,13 @@ PG_CFLAGS += $(OPTFLAGS) -ftree-vectorize -fassociative-math -fno-signed-zeros - # Debug Clang auto-vectorization # PG_CFLAGS += -Rpass=loop-vectorize -Rpass-analysis=loop-vectorize -all: sql/$(EXTENSION)--$(EXTVERSION).sql - -sql/$(EXTENSION)--$(EXTVERSION).sql: sql/$(EXTENSION).sql - cp $< $@ - PG_CONFIG ?= pg_config PGXS := $(shell $(PG_CONFIG) --pgxs) include $(PGXS) +sql/$(EXTENSION)--$(EXTVERSION).sql: sql/$(EXTENSION).sql + cp $< $@ + # for Mac ifeq ($(PROVE),) PROVE = prove