OSDN Git Service

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