diff options
| author | Jonas Bernoulli <jonas@bernoul.li> | 2022-04-22 18:15:18 +0200 |
|---|---|---|
| committer | Jonas Bernoulli <jonas@bernoul.li> | 2022-04-22 21:03:10 +0200 |
| commit | 557b9d3df19b597853e4e2b608c015aea0dfc1ed (patch) | |
| tree | 9cde9100d9dd4179f91f4ac852f7de4d26ce8865 | |
| parent | 5a43c5f557ff31c3c598d4b51f2c2dd96e7adbb6 (diff) | |
make: Right-align target verbs
| -rw-r--r-- | docs/Makefile | 2 | ||||
| -rw-r--r-- | lisp/Makefile | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/Makefile b/docs/Makefile index 084158e..59810c7 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -77,7 +77,7 @@ install-info: info ## Clean ############################################################# clean: - @printf "Cleaning docs/*...\n" + @printf " Cleaning docs/*...\n" @$(RMDIR) dir $(INFOPAGES) $(HTMLFILES) $(HTMLDIRS) $(PDFFILES) @$(RMDIR) $(EPUBFILES) $(EPUBTRASH) @$(RMDIR) $(GENSTATS_DIR) diff --git a/lisp/Makefile b/lisp/Makefile index 4c764fb..d59bbd6 100644 --- a/lisp/Makefile +++ b/lisp/Makefile @@ -82,7 +82,7 @@ versionlib: $(PKG)-version.el -f batch-byte-compile $< $(PKG)-autoloads.el: $(ELS) - @printf "Generating $@\n" + @printf " Creating $@\n" @printf "%s" "$$LOADDEFS_TMPL" > $@ @$(BATCH) --eval "(progn\ (fset 'message (lambda (&rest _)))\ @@ -94,7 +94,7 @@ $(PKG)-autoloads.el: $(ELS) (update-directory-autoloads default-directory))" $(PKG)-version.el: - @printf "Generating $@\n" + @printf " Creating $@\n" @printf "%s" "$$VERSIONLIB_TMPL" > $@ check-declare: @@ -111,7 +111,7 @@ install: lisp versionlib ## Clean ############################################################# clean: - @printf "Cleaning lisp/*...\n" + @printf " Cleaning lisp/*...\n" @$(RM) *.elc $(ELGS) ## Templates ######################################################### |
