~ubuntu-branches/ubuntu/lucid/ess/lucid

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Dirk Eddelbuettel
  • Date: 2009-06-08 15:19:01 UTC
  • mfrom: (1.2.10 upstream) (3.1.8 sid)
  • Revision ID: james.westby@ubuntu.com-20090608151901-tgeol82i4vc4j7kq
Tags: 5.4-1
* New upstream version released today

* etc/config.guess: Switched to current version /usr/share/misc/config.guess

* debian/control enhancements suggested by Debian bugreport #529914
* debian/control: Increased Standards-Version: to 3.8.1
* debian/control: Added Homepage: fields
* debian/compat: Increased to level 7, increaded Build-Depends accordingly
* debian/rules: Use dh_prep in cleaning step

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
## --- PRE-release ---
17
17
 
18
 
dist: VERSION RPM.spec
19
 
        cd doc;  $(MAKE) docs; cd ..
20
 
        cd lisp; $(MAKE) dist; grep 'ess-version' ess-cust.el; cd ..
21
 
        $(MAKE) cleanup-dist
22
 
        svn cleanup
23
 
        @echo "** Committing VERSION, README, ANNOUNCE, info etc **"
24
 
        svn commit -m "Updating toplevel files for new version" \
25
 
                VERSION README ANNOUNCE RPM.spec
26
 
        svn commit -m "Updating ess-version, info & html for new version" lisp/ess-cust.el doc/info doc/html
 
18
# new target to create .tgz and .zip files only
 
19
# run in the foreground so you can accept the certificate
 
20
# for real men
 
21
# GNUTAR=gtar make downloads
 
22
downloads:
27
23
        @echo "**********************************************************"
28
24
        @echo "** Making distribution of ESS for release $(ESSVERSION),"
29
25
        @echo "** from $(ESSDIR)"
59
55
#       cp doc/info/ess.info info; mv lisp ess; mkdir lisp; mv ess lisp; \
60
56
#       $(GNUTAR) hcvofz ../$(ESSDIR)-xemacs-pkg.tgz etc info lisp; \
61
57
#       zip -r ../$(ESSDIR)-xemacs-pkg.zip etc info lisp; cd ..
 
58
 
 
59
dist: VERSION RPM.spec downloads
 
60
        cd doc;  $(MAKE) docs; cd ..
 
61
        cd lisp; $(MAKE) dist; grep 'ess-version' ess-cust.el; cd ..
 
62
        $(MAKE) cleanup-dist
 
63
        svn cleanup
 
64
        @echo "** Committing VERSION, README, ANNOUNCE, info etc **"
 
65
        svn commit -m "Updating toplevel files for new version" \
 
66
                VERSION README ANNOUNCE RPM.spec
 
67
        svn commit -m "Updating ess-version, info & html for new version" lisp/ess-cust.el doc/info doc/html
 
68
        $(MAKE) downloads
62
69
        $(MAKE) cleanup-dist
63
70
        touch $@
64
71