emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/urgrep ce6f2ffa3a: Handle urgrep-pkg.el in Makefile


From: ELPA Syncer
Subject: [elpa] externals/urgrep ce6f2ffa3a: Handle urgrep-pkg.el in Makefile
Date: Thu, 3 Aug 2023 18:58:48 -0400 (EDT)

branch: externals/urgrep
commit ce6f2ffa3a12e4ebb9efd430d7291e8a9873f99b
Author: Jim Porter <jporterbugs@gmail.com>
Commit: Jim Porter <jporterbugs@gmail.com>

    Handle urgrep-pkg.el in Makefile
---
 Makefile | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index 8efdcff1ae..74f7350e29 100644
--- a/Makefile
+++ b/Makefile
@@ -18,9 +18,10 @@
 PACKAGE_NAME := urgrep
 PACKAGE_MAIN := $(PACKAGE_NAME).el
 AUTOLOADS := $(PACKAGE_NAME)-autoloads.el
+PKG_FILE := $(PACKAGE_NAME)-pkg.el
 TESTS := $(wildcard *-tests.el)
 TEST_OBJS := $(patsubst %.el,%.elc,$(TESTS))
-SRCS := $(filter-out $(AUTOLOADS) $(TESTS), $(wildcard *.el))
+SRCS := $(filter-out $(AUTOLOADS) $(PKG_FILE) $(TESTS), $(wildcard *.el))
 OBJS := $(patsubst %.el,%.elc,$(SRCS))
 
 EMACS ?= emacs
@@ -92,4 +93,4 @@ check: $(if $(NO_COMPILE),,$(OBJS) $(TEST_OBJS))
 
 .PHONY: clean
 clean:
-       rm -f *.elc $(AUTOLOADS)
+       rm -f *.elc $(AUTOLOADS) $(PKG_FILE)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]