Prefix "epa--" rather than "epa-" for private functions.
[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-setup.el
5
6 CLEANFILES = auto-autoloads.el* custom-load.el *.elc
7 FLAGS ?= -batch -q -no-site-file
8
9 all: elc
10
11 elc:
12         $(EMACS) $(FLAGS) -l COMPILE -f epg-compile
13
14 install: elc
15         $(EMACS) $(FLAGS) -l COMPILE -f epg-install $(lispdir) # $(MAKE)
16
17 package:
18         $(XEMACS) $(FLAGS) -l COMPILE -f epg-compile-package
19
20 install-package: package
21         $(XEMACS) $(FLAGS) -l COMPILE -f epg-install-package \
22                 $(PACKAGEDIR) # $(MAKE)
23
24 compile-individually:
25         @for i in `$(EMACS) $(FLAGS) -l COMPILE -f epg-examine`; do \
26                 echo $(EMACS) $(FLAGS) -l COMPILE \
27                         -f epg-compile-module $$i; \
28                 $(EMACS) $(FLAGS) -l COMPILE \
29                         -f epg-compile-module $$i; \
30         done