File: Makefile.am

package info (click to toggle)
easypg 0.0.7-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 448 kB
  • ctags: 318
  • sloc: lisp: 2,960; sh: 532; makefile: 33
file content (30 lines) | stat: -rw-r--r-- 752 bytes parent folder | download
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
AUTOMAKE_OPTIONS = no-dependencies

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

CLEANFILES = auto-autoloads.el* custom-load.el *.elc
FLAGS ?= -batch -q -no-site-file

all: elc

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

install: 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)

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