~ubuntu-branches/ubuntu/trusty/irssi-plugin-xmpp/trusty

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Bazaar Package Importer
  • Author(s): David Ammouial
  • Date: 2008-06-23 16:03:33 UTC
  • mfrom: (1.1.2 upstream) (2.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080623160333-3wwbzgtzwznjjvrf
Tags: 0.13+cvs20080610-1
* New CVS snapshot:
  - New features and bugfixes.
  - Fix ignoring of messages without a type attribute (Closes: #477989).
* Depend on irssi >=0.8.12 (Closes: #469923).
* Add FAQ and MUC to documentation files (Closes: #485595).
* debian/rules: install help files in irssi help directory.
* debian/rules: Remove useless "make -n" command in build-stamp rule.
* Bump Standards-Version to 3.8.0 (no changes needed). 
* debian/control: Add "Enhances: irssi".

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: Makefile,v 1.4 2007/12/06 11:18:35 errtu Exp $
 
1
# $Id: Makefile,v 1.6 2008/04/04 16:02:15 errtu Exp $
2
2
 
3
3
include config.mk
4
4
 
24
24
help-install:
25
25
        @echo installing command help files to ${DESTDIR}${IRSSI_HELP}
26
26
        @install -d ${DESTDIR}${IRSSI_HELP}
27
 
        @install xmppconnect xmppserver ${DESTDIR}${IRSSI_HELP}
 
27
        @cd help/ && install -m 644 roster xmppconnect xmppserver ${DESTDIR}${IRSSI_HELP}
28
28
 
29
29
help-uninstall:
30
30
        @echo uninstalling command help files from ${DESTDIR}${IRSSI_HELP}
31
 
        @cd ${DESTDIR}${IRSSI_HELP} && rm -f xmppconnect xmppserver
 
31
        @cd ${DESTDIR}${IRSSI_HELP} && rm -f roster xmppconnect xmppserver
32
32
 
33
33
.PHONY: all clean install uninstall user-install user-uninstall doc-install doc-uninstall help-install help-uninstall