summaryrefslogtreecommitdiff
path: root/elpa/Makefile.in
diff options
context:
space:
mode:
authorPhillip Lord <phillip.lord@russet.org.uk>2018-03-09 22:16:23 +0000
committerPhillip Lord <phillip.lord@russet.org.uk>2018-03-09 22:16:23 +0000
commit239379f2e6bf9ed664f4bc932b1f0750dd20ce81 (patch)
treebd6d5b330544c7d6afac0758ae2bb432bd33bad5 /elpa/Makefile.in
parentf8be6d6d84ec98a0a481eb5a202f7615dc8d706e (diff)
downloademacs-239379f2e6bf9ed664f4bc932b1f0750dd20ce81.tar.gz
Add master branch support
Diffstat (limited to 'elpa/Makefile.in')
-rw-r--r--elpa/Makefile.in40
1 files changed, 28 insertions, 12 deletions
diff --git a/elpa/Makefile.in b/elpa/Makefile.in
index c4c25261610..14737dc9927 100644
--- a/elpa/Makefile.in
+++ b/elpa/Makefile.in
@@ -1,9 +1,4 @@
-all: ensure-dir repo working/pabbrev
-
-ensure-dir:
- - mkdir working
- - mkdir ../lisp/elpa
- - mkdir ../test/lisp/elpa
+all: repo working/pabbrev working/stream working/sml-mode working/seq
repo:
git clone --mirror https://git.savannah.gnu.org/git/emacs/elpa.git repo
@@ -11,13 +6,34 @@ repo:
repo-update: repo
cd repo;git fetch --all
-working/pabbrev:
- ./bin/deploy-elpa d28cf8632d2691dc93afbb28500126242d37961c pabbrev
+.PHONY: repo-update
+
+## pabbrev is an external -- so it's on a branch
+## d28cf86 is the last release of pabbrev
+working/pabbrev: Makefile.in
+ ./bin/deploy-to-core -e d28cf86 pabbrev
+
+## stream is interesting because it has tests. Also, while it does not
+## have an info there is a stream.info in core which documents
+## something else.
+## 110b174643707 was master/HEAD when I happened to checkout elpa
+working/stream: Makefile.in
+ ./bin/deploy-to-core 110b174643707 stream
+
+working/sml-mode: Makefile.in
+ ./bin/deploy-to-core -d progmodes 110b174643707 sml-mode
+
+working/seq: Makefile.in
+ ./bin/deploy-to-core -d emacs-lisp 110b174643707 seq
+
clean:
- rm -rf working
- rm -rf ../lisp/elpa
- rm -rf ../test/lisp/elpa
+ - rm -rf working
+ - rm -rf ../lisp/elpa
+ - rm -rf ../test/lisp/elpa
distclean: clean
- rm -rf repo
+ - rm -rf repo
+
+
+.PHONY: clean distclean