annotate lisp/cc-mode/Makefile @ 165:5a88923fcbfe r20-3b9

Import from CVS: tag r20-3b9
author cvs
date Mon, 13 Aug 2007 09:44:42 +0200
parents
children 15872534500d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1 # Modified by slb for integration with XEmacs.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
2
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
3 EMACS = xemacs
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
4
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
5 OPTS = -batch -q -no-site-file
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
6
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
7 CMD = -f batch-byte-compile
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
8
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
9 PRELOADS = -l ./cc-vars.el -l ./cc-mode.el -l ./cc-menus.el -l ./cc-langs.el
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
10
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
11 SPECIAL_ELCS = custom-load.elc
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
12
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
13 .el.elc:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
14 $(EMACS) $(OPTS) $(PRELOADS) $(CMD) $<
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
15
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
16 ALL_ELCS = \
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
17 cc-align.elc cc-auto.elc cc-cmds.elc cc-compat.elc \
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
18 cc-engine.elc cc-langs.elc cc-menus.elc cc-mode.elc \
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
19 cc-styles.elc cc-vars.elc
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
20
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
21 all: $(ALL_ELCS) $(SPECIAL_ELCS)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
22
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
23 custom-load.elc: custom-load.el
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
24 $(EMACS) $(OPTS) $(CMD) $<
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
25
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
26 clean:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
27 -rm $(ALL_ELCS)