Patch-Source: https://sources.debian.org/data/main/e/emacsql/3.1.1%2Bgit20230417.6401226%2Bds-2/debian/patches/set-all-Makefile-target-to-build-what-we-want.patch -- From: Sean Whitton Date: Thu, 11 Jun 2020 18:36:33 -0700 Subject: set 'all' Makefile target to build what we want --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f3b7c48..507c8c2 100644 --- a/Makefile +++ b/Makefile @@ -34,10 +34,10 @@ LOAD_PATH ?= $(addprefix -L ../,$(DEPS)) LOAD_PATH += -L . LOAD_PATH += -L ./tests -all: binary lisp +all: binary help: - $(info make all - generate binary, byte-code and autoloads) + $(info make all - generate binary) $(info make binary - generate binary) $(info make lisp - generate byte-code and autoloads) $(info make test - run tests)