blob: 575f07267d2c9ee44101d6c0ebdb8271ae16e48f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)
|