mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-11 14:26:38 +02:00
27 lines
890 B
Diff
27 lines
890 B
Diff
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 <spwhitton@spwhitton.name>
|
|
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)
|