diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2025-11-30 19:43:16 +0100 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2025-11-30 19:43:16 +0100 |
| commit | 4b90a7b890e0bcda16dcf34e1be9a2f5854c919f (patch) | |
| tree | 4c930f20eba26884a020b5545e5f4d9acc6ea1b0 /default.mk | |
| parent | 96f5c2b55503e6a4fb2d0ceebadbfc9cfc0aa79e (diff) | |
make: Remove unused variables
And rename PKGSTEXI to just PKGS.
Diffstat (limited to 'default.mk')
| -rw-r--r-- | default.mk | 25 |
1 files changed, 11 insertions, 14 deletions
@@ -2,6 +2,9 @@ TOP := $(dir $(lastword $(MAKEFILE_LIST))) DOMAIN ?= magit.vc +PKG = magit +PKGS = magit magit-section + ## User options ###################################################### # # You can override these settings in "config.mk" or on the command @@ -44,18 +47,14 @@ GITSTATS_ARGS ?= -c style=https://magit.vc/assets/stats.css \ ## Files ############################################################# -PKG = magit -PKGSTEXI = magit magit-section -PACKAGES = magit magit-section git-commit - -ORGPAGES = $(addsuffix .org,$(PKGSTEXI)) -TEXIPAGES = $(addsuffix .texi,$(PKGSTEXI)) -INFOPAGES = $(addsuffix .info,$(PKGSTEXI)) -HTMLFILES = $(addsuffix .html,$(PKGSTEXI)) -HTMLTOPS = $(addsuffix /index.html,$(PKGSTEXI)) -HTMLDIRS = $(PKGSTEXI) -PDFFILES = $(addsuffix .pdf,$(PKGSTEXI)) -EPUBFILES = $(addsuffix .epub,$(PKGSTEXI)) +ORGPAGES = $(addsuffix .org,$(PKGS)) +TEXIPAGES = $(addsuffix .texi,$(PKGS)) +INFOPAGES = $(addsuffix .info,$(PKGS)) +HTMLFILES = $(addsuffix .html,$(PKGS)) +HTMLTOPS = $(addsuffix /index.html,$(PKGS)) +HTMLDIRS = $(PKGS) +PDFFILES = $(addsuffix .pdf,$(PKGS)) +EPUBFILES = $(addsuffix .epub,$(PKGS)) # When making changes here, also update "<nongnu.git>/elpa-packages". @@ -107,8 +106,6 @@ ELS += magit-dired.el ELS += git-rebase.el ELS += magit-bookmark.el ELCS = $(ELS:.el=.elc) -ELMS = magit.el $(filter-out $(addsuffix .el,$(PACKAGES)),$(ELS)) -ELGS = magit-autoloads.el magit-version.el ## Versions ########################################################## |
