Skip to content

Commit 1cd1b08

Browse files
committed
Remove autoloads generation from make all
Generating autoloads is a very special case that's rarely needed, so no reason to include it into `make all`. Thus, separate it to its own rule that can be invoked with `make autoloads`, and move out of `all`.
1 parent d150f6d commit 1cd1b08

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ PKG_TAR = purescript-mode-$(VERSION).tar
4242

4343
.PHONY: all compile info clean test elpa package
4444

45-
all: compile $(AUTOLOADS) info
45+
all: compile info
4646

4747
compile: $(ELCFILES)
4848

@@ -87,6 +87,7 @@ $(PKG_TAR): $(PKG_DIST_FILES) purescript-mode-pkg.el.in
8787
@echo
8888
@echo "Created ELPA compatible distribution package '$@' from $(GIT_VERSION)"
8989

90+
autoloads: $(AUTOLOADS)
9091
$(AUTOLOADS): $(ELFILES) purescript-mode.elc
9192
$(BATCH) \
9293
--eval '(setq make-backup-files nil)' \

0 commit comments

Comments
 (0)