diff options
author | Funda Wang <fwang@mandriva.org> | 2008-05-10 09:58:31 +0000 |
---|---|---|
committer | Funda Wang <fwang@mandriva.org> | 2008-05-10 09:58:31 +0000 |
commit | 4f6f6ee4de3d4f5228816f04255d9c413c3e1d82 (patch) | |
tree | f586eca8e8b5772b06b4fafee2ecf07472ed36a6 /Makefile | |
parent | f5c0993b9eb787c320fa00cf4b65bc22d4cddabd (diff) | |
download | config-4f6f6ee4de3d4f5228816f04255d9c413c3e1d82.tar config-4f6f6ee4de3d4f5228816f04255d9c413c3e1d82.tar.gz config-4f6f6ee4de3d4f5228816f04255d9c413c3e1d82.tar.bz2 config-4f6f6ee4de3d4f5228816f04255d9c413c3e1d82.tar.xz config-4f6f6ee4de3d4f5228816f04255d9c413c3e1d82.zip |
add sources
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ac113b0 --- /dev/null +++ b/Makefile @@ -0,0 +1,44 @@ +PACKAGE = mandriva-lxde-config +VERSION = 0.1 + +prefix=$(prefix) +lxdeprofdir=$(localstatedir)/mandriva/lxde-profiles + +install: + -install -d $(DESTDIR)$(lxdeprofdir) + + -install -d $(DESTDIR)$(lxdeprofdir)/Flash + install -m 644 Flash/config $(DESTDIR)$(lxdeprofdir)/Flash + + -install -d $(DESTDIR)$(lxdeprofdir)/Free + install -m 644 Free/config $(DESTDIR)$(lxdeprofdir)/Free + + -install -d $(DESTDIR)$(lxdeprofdir)/One + install -m 644 One/config $(DESTDIR)$(lxdeprofdir)/One + + -install -d $(DESTDIR)$(lxdeprofdir)/Powerpack + install -m 644 Powerpack/config $(DESTDIR)$(lxdeprofdir)/Powerpack + +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) + +dist: cleandist localcopy tar + +.PHONY: ChangeLog log changelog + +log: ChangeLog + +changelog: ChangeLog + +ChangeLog: ../common/username.xml + svn2cl --accum --authors ../../soft/common/username.xml + rm -f *.bak + svn commit -m "Generated by svn2cl the `LC_TIME=C date '+%d_%b'`" ChangeLog |