File: Makefile.am

package info (click to toggle)
easypg 0.0.16-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 816 kB
  • ctags: 388
  • sloc: lisp: 3,899; sh: 794; makefile: 36
file content (35 lines) | stat: -rw-r--r-- 889 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
AUTOMAKE_OPTIONS = no-dependencies

EXTRA_DIST = COMPILE epg-config.el epg.el epa.el epa-dired.el \
epa-file.el epa-mail.el epa-setup.el

CLEANFILES = auto-autoloads.el* custom-load.el *.elc
DISTCLEANFILES = epg-package-info.el

info_TEXINFOS = epa.texi

FLAGS ?= -batch -q -no-site-file

all-local: elc

elc:
	$(EMACS) $(FLAGS) -l COMPILE -f epg-compile

install-data-local: elc
	$(EMACS) $(FLAGS) -l COMPILE -f epg-install $(lispdir) # $(MAKE)

package:
	$(XEMACS) $(FLAGS) -l COMPILE -f epg-compile-package

install-package: package
	$(XEMACS) $(FLAGS) -l COMPILE -f epg-install-package \
		$(PACKAGEDIR) # $(MAKE)
	$(MAKE) infodir=$(PACKAGEDIR)/info install

compile-individually:
	@for i in `$(EMACS) $(FLAGS) -l COMPILE -f epg-examine`; do \
		echo $(EMACS) $(FLAGS) -l COMPILE \
			-f epg-compile-module $$i; \
		$(EMACS) $(FLAGS) -l COMPILE \
			-f epg-compile-module $$i; \
	done