diff options
author | Kyle Meyer <kyle@kyleam.com> | 2020-04-21 00:14:33 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2020-05-07 00:46:33 -0400 |
commit | 4078a6e49cd0f10ccc0a1b48d791730ed92cd87a (patch) | |
tree | dbf7429bb5e28515c96705a73bd418fce93fdb39 /Makefile | |
parent | 4d386818291d2e3b4072b188ab93e522968ea53e (diff) | |
download | piem-4078a6e49cd0f10ccc0a1b48d791730ed92cd87a.tar.gz |
Add a barely useful interface to b4-am
Aside from switching the 'b4 am' process to an asynchronous one, the
am-ready commands may not need a lot of work. The more interesting
variant, piem-b4-am-from-mid, can find an associated code repository
and am the patch, but there's a lot that needs to be fleshed out.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1,7 +1,12 @@ -BATCH = emacs -Q --batch +-include config.mk -all: piem.elc piem.info +TRANSIENT_DIR ?= /dev/null + +LOAD_PATH = -L . -L $(TRANSIENT_DIR) +BATCH = emacs -Q --batch $(LOAD_PATH) + +all: piem.elc piem-b4.elc piem.info .PHONY: clean clean: |