diff options
author | Chmouel Boudjnah <chmouel@mandriva.org> | 1999-12-19 18:02:29 +0000 |
---|---|---|
committer | Chmouel Boudjnah <chmouel@mandriva.org> | 1999-12-19 18:02:29 +0000 |
commit | 27a46978e80995b757cdba0d068efb0a1cbfa39f (patch) | |
tree | 7a5812ba7e77779fd237e386c00532b0bbce931c /Makefile | |
parent | 316a5ee8ecd0f7585bcf13ed642b14b3e2f9875f (diff) | |
download | common-data-27a46978e80995b757cdba0d068efb0a1cbfa39f.tar common-data-27a46978e80995b757cdba0d068efb0a1cbfa39f.tar.gz common-data-27a46978e80995b757cdba0d068efb0a1cbfa39f.tar.bz2 common-data-27a46978e80995b757cdba0d068efb0a1cbfa39f.tar.xz common-data-27a46978e80995b757cdba0d068efb0a1cbfa39f.zip |
Initial revisionoxygentopic/mandrake
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..575f072 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +VERSION=0.9.8 + +all: + echo "Run make dis" + +clean: + find . -type d -name '.xvpics'|xargs rm -rf + +install: clean + rm -rf mandrake_desk-$(VERSION) + mkdir mandrake_desk-$(VERSION) + find . ! -name mandrake_desk-$(VERSION)|cpio -pvd mandrake_desk-$(VERSION) + find mandrake_desk-$(VERSION) -type d -name CVS|xargs rm -rf + tar cyf ../mandrake_desk-$(VERSION).tar.bz2 mandrake_desk-$(VERSION) + rm -rf mandrake_desk-$(VERSION) |