Change Details
| Makefile |
| 4 | 4 | |
| 5 | 5 | dist: jar javadoc docu |
| 6 | 6 | cp -R ./src ./dist/ |
| 7 | | cd ./dist && rm -f Thorrent.tar.bz2 && tar cvfj Thorrent.tar.bz2 * |
| 7 | rm -f Thorrent.tar.bz2 && cd ./dist && tar cvfj ../Thorrent.tar.bz2 * |
| 8 | rm -f Thorrent.zip && cd ./dist && zip -r ../Thorrent.zip * |
| 8 | 9 | |
| 9 | 10 | baselib: |
| 10 | 11 | mkdir -p ./build |
| ... | ... | |
| 27 | 28 | cd ./build && jar cfe ../dist/Thor.jar thorrent.tracker.Thor thorrent/{tracker,helpers,bencoding}/* |
| 28 | 29 | cd ./build && jar cfe ../dist/BDot.jar thorrent.bencoding.BDot thorrent/{bencoding,helpers}/* |
| 29 | 30 | cd ./build && jar cfe ../dist/TorrentInfo.jar thorrent.bencoding.TorrentInfo thorrent/{bencoding,helpers}/* |
| 31 | |
| 30 | 32 | javadoc: |
| 31 | 33 | mkdir -p ./dist/javadoc |
| 32 | 34 | cd ./src/ && javadoc -private -encoding utf8 -docencoding utf8 -author -doctitle "Thorrent" -windowtitle "Thorrent" -d ../dist/javadoc/ */*/*.java |
| ... | ... | |
| 41 | 43 | cp -r ./doc/* ./dist/doc |
| 42 | 44 | |
| 43 | 45 | clean: |
| 44 | | rm -fr ./dist ./build /tmp/thorrentlatex |
| 46 | rm -fr ./dist ./build /tmp/thorrentlatex Thorrent.zip Thorrent.tar.bz2 |
Download the corresponding diff file