annotate lisp/eos/Makefile @ 7:c153ca296910

Added tag r19-15b4 for changeset 27bc7f280385
author cvs
date Mon, 13 Aug 2007 08:47:16 +0200
parents 376386a54a3c
children 15872534500d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ### Makefile --- The makefile to build EOS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 ## Copyright (C) 1995 Sun Microsystems, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ## Maintainer: Eduardo Pelegri-Llopart <eduardo.pelegri-llopart@Eng.Sun.COM>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ## Author: Eduardo Pelegri-Llopart <eduardo.pelegri-llopart@Eng.Sun.COM>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 ## Keywords: SPARCworks EOS Era on SPARCworks make makefile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ### Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ## Please send feedback to eduardo.pelegri-llopart@eng.sun.com
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ### Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 # what emacs is called on your system
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 EMACS = ../../src/xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 # compile with noninteractive and relatively clean environment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 BATCHFLAGS = -batch -q -no-site-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 # files that contain variables and macros that everything else depends on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 CORE = sun-eos-common.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 OBJECTS = \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 sun-eos-browser.elc sun-eos-common.elc sun-eos-debugger-extra.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 sun-eos-debugger.elc sun-eos-editor.elc sun-eos-init.elc \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 sun-eos-menubar.elc sun-eos-toolbar.elc sun-eos-load.elc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 SOURCES = \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 sun-eos-browser.el sun-eos-common.el sun-eos-debugger-extra.el \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 sun-eos-debugger.el sun-eos-editor.el sun-eos-init.el \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 sun-eos-menubar.el sun-eos-toolbar.el sun-eos-load.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 all: $(OBJECTS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 clean:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 rm -f $(OBJECTS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 sun-eos-browser.elc: sun-eos-browser.el $(CORE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 ${EMACS} ${BATCHFLAGS} -f batch-byte-compile sun-eos-browser.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 sun-eos-debugger.elc: sun-eos-debugger.el $(CORE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 ${EMACS} ${BATCHFLAGS} -f batch-byte-compile sun-eos-debugger.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 sun-eos-debugger-extra.elc: sun-eos-debugger-extra.el $(CORE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 ${EMACS} ${BATCHFLAGS} -f batch-byte-compile sun-eos-debugger-extra.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 sun-eos-editor.elc: sun-eos-editor.el $(CORE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 ${EMACS} ${BATCHFLAGS} -f batch-byte-compile sun-eos-editor.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 sun-eos-toolbar.elc: sun-eos-toolbar.el $(CORE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 ${EMACS} ${BATCHFLAGS} -f batch-byte-compile sun-eos-toolbar.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 sun-eos-menubar.elc: sun-eos-menubar.el $(CORE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 ${EMACS} ${BATCHFLAGS} -f batch-byte-compile sun-eos-menubar.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 sun-eos-common.elc: sun-eos-common.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 ${EMACS} ${BATCHFLAGS} -f batch-byte-compile sun-eos-common.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 sun-eos-init.elc: sun-eos-init.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 ${EMACS} ${BATCHFLAGS} -f batch-byte-compile sun-eos-init.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 sun-eos-load.elc: sun-eos-load.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 ${EMACS} ${BATCHFLAGS} -f batch-byte-compile sun-eos-load.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 ### Makefile ends here