branch: master commit 22bda0267df43cdbb146546a516e955ae64ef682 Author: Teemu Likonen <tliko...@iki.fi> Commit: Teemu Likonen <tliko...@iki.fi>
Wcheck: Remove unnecessary Makefile --- packages/wcheck-mode/Makefile | 39 --------------------------------------- 1 file changed, 39 deletions(-) diff --git a/packages/wcheck-mode/Makefile b/packages/wcheck-mode/Makefile deleted file mode 100644 index 225b5e3..0000000 --- a/packages/wcheck-mode/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# Makefile for wcheck-mode - -BASE := wcheck-mode -DESC := General interface for text checkers -VERSION := $(shell date +%Y.%-m.%-d) -MAIN := $(BASE).el -PKG := $(BASE)-pkg.el -FILES := $(MAIN) $(PKG) COPYING README -NAME := $(BASE)-$(VERSION) - -elpa: $(PKG) -tar: $(NAME).tar -sign: $(NAME).tar.sig -elc: $(BASE).elc - -$(NAME).tar: $(FILES) - tar --create --file $@ --transform 's,^,$(NAME)/,' $(FILES) - -$(NAME).tar.sig: $(NAME).tar - gpg --yes --detach-sign $< - -$(PKG): - @printf "(define-package \"%s\" \"%s\"\n \"%s\")\n" \ - "$(BASE)" "$(VERSION)" "$(DESC)" >$@ - @cat $@ - -README: README.md - cp -f -- $< $@ - -$(BASE).elc: %.elc: %.el - emacs -Q --batch -f batch-byte-compile $< - -tag: - git tag -s $(VERSION) -m 'Version $(VERSION)' HEAD - -clean: - rm -f -- $(BASE)*.tar* README $(BASE).elc - -.PHONY: elpa tar sign tag clean elc $(PKG)