This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
VERSION=$(shell sh extract_version.sh) |
| 2 |
dist: translations |
| 3 |
echo $(VERSION) |
| 4 |
mkdir intelligent_playlist |
| 5 |
cp README intelligent_playlist |
| 6 |
cp COPYING intelligent_playlist |
| 7 |
cp AUTHORS intelligent_playlist |
| 8 |
cp script.spec intelligent_playlist |
| 9 |
cp *.js intelligent_playlist |
| 10 |
cp *.ui intelligent_playlist |
| 11 |
mkdir intelligent_playlist/translations |
| 12 |
cp translations/*.qm intelligent_playlist/translations |
| 13 |
tar -cjf intelligent_playlist-$(VERSION).amarokscript.tar.bz2 intelligent_playlist |
| 14 |
rm -rf intelligent_playlist |
| 15 |
.PHONY: dist |
| 16 |
|
| 17 |
translations: |
| 18 |
make -C translations |
| 19 |
.PHONY: translations |