diff options
author | Kyle Meyer <kyle@kyleam.com> | 2021-05-27 19:27:14 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2021-05-27 22:34:20 -0400 |
commit | 205f45561c2f19b17b11a5c0168568ecceae4008 (patch) | |
tree | a6af219f1f0d84d61f0b0a9357f92a9bd1830691 /Makefile | |
parent | c99e806fd307ef69adc0d3a277385687edfd3454 (diff) | |
download | piem-205f45561c2f19b17b11a5c0168568ecceae4008.tar.gz |
Add basic integration for Rmail
Teach piem how to get the associated inbox and message ID for the
current Rmail message.
Message-Id: <20210527232714.8726-1-kyle@kyleam.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -5,8 +5,8 @@ EMACS = emacs BATCH = $(EMACS) --batch -Q -L . -L tests EL = piem.el piem-b4.el piem-elfeed.el piem-eww.el piem-gnus.el \ - piem-maildir.el piem-notmuch.el \ - tests/piem-tests.el + piem-maildir.el piem-notmuch.el piem-rmail.el \ + tests/piem-rmail-tests.el tests/piem-tests.el ELC = $(EL:.el=.elc) all: compile Documentation/piem.info piem-autoloads.el @@ -37,7 +37,9 @@ piem-eww.elc: piem-eww.el piem.elc piem-gnus.elc: piem-gnus.el piem.elc piem-maildir.elc: piem-maildir.el piem-notmuch.elc: piem-notmuch.el piem.elc +piem-rmail.elc: piem-rmail.el piem.elc piem.elc: piem.el piem-maildir.elc +tests/piem-rmail-tests.elc: tests/piem-rmail-tests.el piem-rmail.elc tests/piem-tests.elc: tests/piem-tests.el piem.elc .SUFFIXES: .el .elc .texi .info .html |