Changeset 05c1bed for skype/Makefile


Ignore:
Timestamp:
2007-08-21T19:01:49Z (17 years ago)
Author:
VMiklos <vmiklos@…>
Branches:
master
Children:
7e600c9
Parents:
2fcad6e
Message:

added new dist and release targets

File:
1 edited

Legend:

Unmodified
Added
Removed
  • skype/Makefile

    r2fcad6e r05c1bed  
    11-include config.mak
     2
     3VERSION = 0.1.0
    24
    35skype.so: skype.c config.mak
     
    2426        rm -f configure install-sh aclocal.m4
    2527
     28dist:
     29        git-archive --format=tar --prefix=bitlbee-skype-$(VERSION)/ HEAD > bitlbee-skype-$(VERSION).tar
     30        mkdir -p bitlbee-skype-$(VERSION)
     31        git log --no-merges |git name-rev --tags --stdin > bitlbee-skype-$(VERSION)/Changelog
     32        tar rf bitlbee-skype-$(VERSION).tar bitlbee-skype-$(VERSION)/Changelog
     33        rm -rf bitlbee-skype-$(VERSION)
     34        gzip -f -9 bitlbee-skype-$(VERSION).tar
     35
     36release:
     37        git tag $(VERSION)
     38        $(MAKE) dist
     39        gpg --comment "See http://ftp.frugalware.org/pub/README.GPG for info" \
     40                -ba -u 20F55619 bitlbee-skype-$(VERSION).tar.gz
     41        mv bitlbee-skype-$(VERSION).tar.gz{,.asc} ../
     42
    2643doc: HEADER.html Changelog
    2744
Note: See TracChangeset for help on using the changeset viewer.