Mercurial > hg > xemacs-beta
comparison lisp/w3/Makefile @ 82:6a378aca36af r20-0b91
Import from CVS: tag r20-0b91
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:07:36 +0200 |
parents | 1ce6082ce73f |
children | 0d2f883870bc |
comparison
equal
deleted
inserted
replaced
81:ebca3d831cea | 82:6a378aca36af |
---|---|
33 CORE = docomp.el | 33 CORE = docomp.el |
34 | 34 |
35 URLSOURCES = \ | 35 URLSOURCES = \ |
36 url-nfs.el url-file.el url-cookie.el url-parse.el url-irc.el \ | 36 url-nfs.el url-file.el url-cookie.el url-parse.el url-irc.el \ |
37 url-gopher.el url-http.el url-mail.el url-misc.el url-news.el \ | 37 url-gopher.el url-http.el url-mail.el url-misc.el url-news.el \ |
38 url-pgp.el url-vars.el url-wais.el urlauth.el mm.el md5.el \ | 38 url-pgp.el url-vars.el url-wais.el url-auth.el mm.el md5.el \ |
39 ssl.el base64.el url.el socks.el | 39 url-gw.el ssl.el base64.el url.el socks.el |
40 | 40 |
41 CUSTOMSOURCES = widget.el widget-edit.el | 41 CUSTOMSOURCES = widget.el widget-edit.el |
42 CUSTOMOBJECTS = $(CUSTOMSOURCES:.el=.elc) | 42 CUSTOMOBJECTS = $(CUSTOMSOURCES:.el=.elc) |
43 URLOBJECTS = $(URLSOURCES:.el=.elc) | 43 URLOBJECTS = $(URLSOURCES:.el=.elc) |
44 | 44 |
45 SOURCES = \ | 45 SOURCES = \ |
46 w3.el w3-display.el w3-e19.el w3-parse.el w3-print.el \ | 46 $(CUSTOMSOURCES) $(URLSOURCES) mule-sysdp.el w3-widget.el \ |
47 w3-vars.el w3-xemac.el w3-style.el w3-about.el w3-hot.el \ | 47 w3-imap.el css.el dsssl.el font.el images.el w3-vars.el \ |
48 w3-toolbar.el font.el w3-sysdp.el w3-annotat.el w3-auto.el \ | 48 w3-style.el w3-keyword.el w3-forms.el w3-emulate.el \ |
49 w3-forms.el images.el w3-imap.el w3-emulate.el w3-menu.el \ | 49 w3-annotat.el w3-auto.el w3-menu.el w3-mouse.el w3-toolbar.el \ |
50 w3-keyword.el w3-mouse.el w3-widget.el w3-speak.el w3-prefs.el \ | 50 w3-prefs.el w3-speak.el w3-latex.el w3-parse.el w3-display.el \ |
51 w3-latex.el dsssl.el css.el mule-sysdp.el $(CUSTOMSOURCES) \ | 51 w3-print.el w3-about.el w3-hot.el w3-e19.el w3-xemac.el w3.el |
52 $(URLSOURCES) | |
53 | 52 |
54 OBJECTS = \ | 53 OBJECTS = $(SOURCES:.el=.elc) |
55 w3.elc w3-display.elc w3-e19.elc w3-parse.elc w3-print.elc \ | |
56 w3-vars.elc w3-xemac.elc w3-style.elc w3-about.elc w3-hot.elc \ | |
57 w3-toolbar.elc font.elc w3-annotat.elc w3-auto.elc \ | |
58 w3-forms.elc images.elc w3-imap.elc w3-emulate.elc w3-menu.elc \ | |
59 w3-keyword.elc w3-mouse.elc w3-widget.elc w3-speak.elc \ | |
60 w3-prefs.elc w3-latex.elc css.elc dsssl.elc mule-sysdp.elc \ | |
61 $(CUSTOMOBJECTS) $(URLOBJECTS) | |
62 | 54 |
63 DISTFILES = Makefile ChangeLog $(SOURCES) w3.txi docomp.el \ | 55 # Warning! Currently, the following file can _NOT_ be bytecompiled. |
64 clean-cache default.css | 56 EXTRAS = w3-sysdp.el |
65 | 57 |
66 .SUFFIXES: .elc .el .el,v | 58 .SUFFIXES: .elc .el .el,v |
67 | 59 |
68 .el.elc: | 60 .el.elc: |
69 $(EMACS) $(BATCHFLAGS) $(DEPS) -f batch-byte-compile $< | 61 $(EMACS) $(BATCHFLAGS) $(DEPS) -f batch-byte-compile $< |
77 @echo Installing in $(lispdir) | 69 @echo Installing in $(lispdir) |
78 @( if [ ! -d $(lispdir) ]; then mkdir -p $(lispdir); fi ) | 70 @( if [ ! -d $(lispdir) ]; then mkdir -p $(lispdir); fi ) |
79 @( if [ ! -d $(infodir) ]; then mkdir -p $(infodir); fi ) | 71 @( if [ ! -d $(infodir) ]; then mkdir -p $(infodir); fi ) |
80 @( if [ ! -d $(confdir) ]; then mkdir -p $(confdir); fi ) | 72 @( if [ ! -d $(confdir) ]; then mkdir -p $(confdir); fi ) |
81 $(INSTALL) -m 644 $(SOURCES) $(OBJECTS) $(lispdir) | 73 $(INSTALL) -m 644 $(SOURCES) $(OBJECTS) $(lispdir) |
74 $(INSTALL) -m 644 $(EXTRAS) $(lispdir) | |
82 $(INSTALL) -m 644 w3.info* $(infodir) | 75 $(INSTALL) -m 644 w3.info* $(infodir) |
83 $(INSTALL) -m 644 default.css $(confdir)/stylesheet | 76 $(INSTALL) -m 644 default.css $(confdir)/stylesheet |
84 $(INSTALL) -m 644 html32.dsl $(confdir)/ | 77 $(INSTALL) -m 644 html32.dsl $(confdir)/ |
85 | 78 |
86 clean: | 79 clean: |