Mercurial > hg > xemacs-beta
comparison lisp/eos/Makefile @ 169:15872534500d r20-3b11
Import from CVS: tag r20-3b11
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:46:53 +0200 (2007-08-13) |
parents | 376386a54a3c |
children |
comparison
equal
deleted
inserted
replaced
168:9851d5c6556e | 169:15872534500d |
---|---|
30 SOURCES = \ | 30 SOURCES = \ |
31 sun-eos-browser.el sun-eos-common.el sun-eos-debugger-extra.el \ | 31 sun-eos-browser.el sun-eos-common.el sun-eos-debugger-extra.el \ |
32 sun-eos-debugger.el sun-eos-editor.el sun-eos-init.el \ | 32 sun-eos-debugger.el sun-eos-editor.el sun-eos-init.el \ |
33 sun-eos-menubar.el sun-eos-toolbar.el sun-eos-load.el | 33 sun-eos-menubar.el sun-eos-toolbar.el sun-eos-load.el |
34 | 34 |
35 EXTRA = custom-load.elc | |
36 | |
35 all: $(OBJECTS) | 37 all: $(OBJECTS) |
36 | 38 |
37 clean: | 39 clean: |
38 rm -f $(OBJECTS) | 40 rm -f $(OBJECTS) |
41 | |
42 custom-load.elc: auto-autoloads.el | |
43 ${EMACS} ${BATCHFLAGS} -f batch-byte-compile custom-load.el | |
39 | 44 |
40 sun-eos-browser.elc: sun-eos-browser.el $(CORE) | 45 sun-eos-browser.elc: sun-eos-browser.el $(CORE) |
41 ${EMACS} ${BATCHFLAGS} -f batch-byte-compile sun-eos-browser.el | 46 ${EMACS} ${BATCHFLAGS} -f batch-byte-compile sun-eos-browser.el |
42 | 47 |
43 sun-eos-debugger.elc: sun-eos-debugger.el $(CORE) | 48 sun-eos-debugger.elc: sun-eos-debugger.el $(CORE) |
62 ${EMACS} ${BATCHFLAGS} -f batch-byte-compile sun-eos-init.el | 67 ${EMACS} ${BATCHFLAGS} -f batch-byte-compile sun-eos-init.el |
63 | 68 |
64 sun-eos-load.elc: sun-eos-load.el | 69 sun-eos-load.elc: sun-eos-load.el |
65 ${EMACS} ${BATCHFLAGS} -f batch-byte-compile sun-eos-load.el | 70 ${EMACS} ${BATCHFLAGS} -f batch-byte-compile sun-eos-load.el |
66 | 71 |
72 autoloads: custom-load.el | |
73 | |
74 custom-load.el: $(SOURCES) | |
75 $(EMACS) -batch -q -no-site-file \ | |
76 -eval '(setq autoload-target-directory "'`pwd`'/")' \ | |
77 -l autoload \ | |
78 -f batch-update-autoloads $? | |
79 | |
67 ### Makefile ends here | 80 ### Makefile ends here |