~ubuntu-branches/ubuntu/maverick/muse-el/maverick

« back to all changes in this revision

Viewing changes to contrib/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Michael W. Olson (GNU address)
  • Date: 2006-10-10 21:44:42 UTC
  • mfrom: (1.1.2 upstream) (3.1.1 edgy)
  • Revision ID: james.westby@ubuntu.com-20061010214442-dwhmmh43pp8oqi4f
Tags: 3.02.8-1
* New upstream release.
* Bug fix: "muse-el: Can not activate planner-mode on Emacs 22", thanks
  to intrigeri (Closes: #391408).
* Bug fix: "muse-el: muse-http.el is not functional", thanks to Junichi
  Uekawa (Closes: #357949).
* control (Build-Depends): New field which contains debhelper
  dependency.
  (Standards-Version): Bump to 3.7.2.
* debian/emacsen-install: Compile files in contrib directory in addition
  to the normal fare.  Thanks to Junichi Uekawa for the suggestion.
* debian/emacsen-startup: Add contrib directory to load-path.
* debian/emacsen-remove: Fix comment.
* debian/compat: New file that sets the debhelper compatibility level to
  4.
* debian/rules: Remove DH_COMPAT line.  Thanks to Romain Francoise for
  the suggestion.
* debian/NEWS: Rename from NEWS.Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.PHONY: all contrib clean realclean distclean fullclean install
 
2
.PRECIOUS: %.elc
 
3
 
 
4
include ../Makefile.defs
 
5
 
 
6
EL  = $(wildcard *.el)
 
7
ELC = $(patsubst %.el,%.elc,$(EL))
 
8
 
 
9
all: contrib
 
10
 
 
11
contrib: $(ELC)
 
12
 
 
13
$(PROJECT)-build.elc: ../scripts/$(PROJECT)-build.el
 
14
        @echo $(PROJECT)-build.el is not byte-compiled
 
15
 
 
16
%.elc: %.el
 
17
        @$(EMACS) -q $(SITEFLAG) -batch -l ../scripts/$(PROJECT)-build.el \
 
18
            -f batch-byte-compile $<
 
19
 
 
20
clean realclean distclean fullclean:
 
21
        -rm -f *.elc *~
 
22
 
 
23
install: $(ELC)
 
24
        install -d $(ELISPDIR)/contrib
 
25
        install -m 0644 $(EL) $(ELC) $(ELISPDIR)/contrib