1 .PHONY
: all examples
clean realclean distclean fullclean
test dist
3 ELC
= $(patsubst %.el
,%.elc
,$(wildcard *.el
))
8 (cd examples
&& $(MAKE
))
10 muse-build.elc
: scripts
/muse-build.el
11 @echo muse-build.el is not byte-compiled
14 @
$(EMACS
) --no-init-file
--no-site-file
-batch \
15 -l scripts
/muse-build.el
-L . \
16 -f batch-byte-compile
$<
20 (cd examples
&& $(MAKE
) clean)
22 realclean distclean fullclean
: clean
23 (cd examples
&& $(MAKE
) distclean)
25 test: fullclean
$(ELC
)
26 emacs
-q
-batch
-L .
-l scripts
/muse-build.el \
27 -f muse-elint-files muse-
*.el
30 (cd ..
; tar cvzf ~
/Public
/Emacs
/muse.
tar.gz muse
)