New branch for utilizing PLAINTEXT status code.
[elisp/epg.git] / Makefile.am
1 AUTOMAKE_OPTIONS = no-dependencies
2
3 EXTRA_DIST = COMPILE epg-config.el epg.el epa.el epa-dired.el \
4 epa-file.el epa-mail.el epa-setup.el
5
6 CLEANFILES = auto-autoloads.el* custom-load.el *.elc
7 DISTCLEANFILES = epg-package-info.el
8 FLAGS ?= -batch -q -no-site-file
9
10 all: elc
11
12 elc:
13         $(EMACS) $(FLAGS) -l COMPILE -f epg-compile
14
15 install: elc
16         $(EMACS) $(FLAGS) -l COMPILE -f epg-install $(lispdir) # $(MAKE)
17
18 package:
19         $(XEMACS) $(FLAGS) -l COMPILE -f epg-compile-package
20
21 install-package: package
22         $(XEMACS) $(FLAGS) -l COMPILE -f epg-install-package \
23                 $(PACKAGEDIR) # $(MAKE)
24
25 compile-individually:
26         @for i in `$(EMACS) $(FLAGS) -l COMPILE -f epg-examine`; do \
27                 echo $(EMACS) $(FLAGS) -l COMPILE \
28                         -f epg-compile-module $$i; \
29                 $(EMACS) $(FLAGS) -l COMPILE \
30                         -f epg-compile-module $$i; \
31         done