diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2025-02-02 01:07:22 +0100 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2025-02-02 01:07:22 +0100 |
| commit | 0a649821007e643ab8c13e770e2a2e10b0389bc4 (patch) | |
| tree | da30b5dc79d4ae174e2915b88d8105e7f7a905d0 /default.mk | |
| parent | e564dde6571d7077ca2a4a22ef796670f42e8172 (diff) | |
Prepare for the arrival of domesticated South American camelids
Diffstat (limited to 'default.mk')
| -rw-r--r-- | default.mk | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -152,6 +152,13 @@ ifeq "$(DASH_DIR)" "" DASH_DIR = $(TOP)../dash endif +LLAMA_DIR ?= $(shell \ + find -L $(ELPA_DIR) -maxdepth 1 -regex '.*/llama-[.0-9]*' 2> /dev/null | \ + sort | tail -n 1) +ifeq "$(LLAMA_DIR)" "" + LLAMA_DIR = $(TOP)../llama +endif + SEQ_DIR ?= $(shell \ find -L $(ELPA_DIR) -maxdepth 1 -regex '.*/seq-[.0-9]*' 2> /dev/null | \ sort | tail -n 1) @@ -192,6 +199,7 @@ LOAD_PATH = -L $(TOP)lisp ifdef CYGPATH LOAD_PATH += -L $(shell cygpath --mixed $(COMPAT_DIR)) LOAD_PATH += -L $(shell cygpath --mixed $(DASH_DIR)) + LOAD_PATH += -L $(shell cygpath --mixed $(LLAMA_DIR)) LOAD_PATH += -L $(shell cygpath --mixed $(SEQ_DIR)) LOAD_PATH += -L $(shell cygpath --mixed $(TRANSIENT_DIR)) LOAD_PATH += -L $(shell cygpath --mixed $(WITH_EDITOR_DIR)) @@ -201,6 +209,7 @@ ifdef CYGPATH else LOAD_PATH += -L $(COMPAT_DIR) LOAD_PATH += -L $(DASH_DIR) + LOAD_PATH += -L $(LLAMA_DIR) LOAD_PATH += -L $(SEQ_DIR) LOAD_PATH += -L $(TRANSIENT_DIR) LOAD_PATH += -L $(WITH_EDITOR_DIR) @@ -221,6 +230,7 @@ endif DEPS = compat DEPS += dash +DEPS += llama DEPS += seq DEPS += transient/lisp DEPS += vterm |
