diff options
author | Tomasz Paweł Gajc <tpg@mandriva.org> | 2007-12-26 01:04:44 +0000 |
---|---|---|
committer | Tomasz Paweł Gajc <tpg@mandriva.org> | 2007-12-26 01:04:44 +0000 |
commit | 93fd06832384ae4b07b0a941e331a409118e11ee (patch) | |
tree | 421329a8707b7f44abce2da7df143fde496573e1 /Makefile | |
parent | 3c4663cac1925e27aa0530901cca8dc18e49c777 (diff) | |
download | config-93fd06832384ae4b07b0a941e331a409118e11ee.tar config-93fd06832384ae4b07b0a941e331a409118e11ee.tar.gz config-93fd06832384ae4b07b0a941e331a409118e11ee.tar.bz2 config-93fd06832384ae4b07b0a941e331a409118e11ee.tar.xz config-93fd06832384ae4b07b0a941e331a409118e11ee.zip |
- complete the makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -1,5 +1,5 @@ # tpg@mandriva.org -NAME = mandriva-xfce-config +PACKAGE = mandriva-xfce-config VERSION = 1.3.6 prefix=$(prefix) @@ -36,6 +36,19 @@ install: -install -d $(DESTDIR)$(xfceprofdir)/Powerpack/xfce4/mcs_settings install -m 644 Powerpack/xfce4/mcs_settings/*.xml $(DESTDIR)$(xfceprofdir)/Powerpack/xfce4/mcs_settings/ +cleandist: + rm -rf $(PACKAGE)-$(VERSION) $(PACKAGE)-$(VERSION).tar.bz2 + +localcopy: + svn export -q -rBASE . $(PACKAGE)-$(VERSION) + +tar: + tar cvf $(PACKAGE)-$(VERSION).tar $(PACKAGE)-$(VERSION) + bzip2 -9vf $(PACKAGE)-$(VERSION).tar + rm -rf $(PACKAGE)-$(VERSION) +# rules to build a distributable rpm + +dist: cleandist localcopy tar .PHONY: ChangeLog log changelog |